How do you use the maven-simian-plugin in Maven2? - Stack Overflow most recent 30 from stackoverflow.com2010-03-17T04:05:03Zhttp://stackoverflow.com/feeds/question/1077700http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1077700/how-do-you-use-the-maven-simian-plugin-in-maven22How do you use the maven-simian-plugin in Maven2?aberrant80http://stackoverflow.com/users/1241112009-07-03T03:59:24Z2009-07-30T19:10:57Z
<p>I'm looking for a Maven2 reporting plugin for <a href="http://www.redhillconsulting.com.au/products/simian/" rel="nofollow">Simian</a> and the closest thing to such a reporting I found is <a href="http://repo1.maven.org/maven2/maven/maven-simian-plugin/1.6.1/" rel="nofollow">this</a>. The problem is, the <a href="http://maven.apache.org/maven-1.x/plugins/simian/" rel="nofollow">documentation for it</a> appears to be for Maven 1 instead. Why is a Maven 1 plugin stored in a Maven 2 repository? I suppose that means I can use it... but how to use? The site mentions reporting but if I don't have a <code>src/main/site</code>, does that mean I can't use it? I was kinda hoping for something like <code>mvn simian:simian</code> similar to <code>mvn checkstyle:checkstyle</code> and <code>mvn pmd:pmd</code>. I don't want to generate site just for the reports. Sites take too long to generate when all I want is a quite xml report.</p>
http://stackoverflow.com/questions/1077700/how-do-you-use-the-maven-simian-plugin-in-maven2/1143077#11430771Answer by Rich Seller for How do you use the maven-simian-plugin in Maven2?Rich Sellerhttp://stackoverflow.com/users/1235822009-07-17T12:52:48Z2009-07-21T11:15:49Z<p>The Simian plugin listed on central is actually for Maven 1 (if you inspect the contents you'll see a project.xml and a plugin.jelly). So that explains why it doesn't work. This is rubbish and should be removed in my opinion.</p>
<p>As far as I can make out there isn't a publically available Maven 2 plugin, this may have something to do with the licence (Simian <a href="http://www.redhillconsulting.com.au/products/simian/" rel="nofollow">isn't open source</a>).</p>
<p>As an alternative, have a look at PMD's <a href="http://pmd.sourceforge.net/cpd.html" rel="nofollow">CPD plugin</a>, it may not be as fully featured as simian but I know it works in a Maven 2 build and detects copypasta pretty well.</p>
<p>To configure PMD, add something like the following to your POM:</p>
<pre><code><reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</reporting>
</code></pre>