How do you use the maven-simian-plugin in Maven2? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-17T04:05:03Z http://stackoverflow.com/feeds/question/1077700 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1077700/how-do-you-use-the-maven-simian-plugin-in-maven2 2 How do you use the maven-simian-plugin in Maven2? aberrant80 http://stackoverflow.com/users/124111 2009-07-03T03:59:24Z 2009-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#1143077 1 Answer by Rich Seller for How do you use the maven-simian-plugin in Maven2? Rich Seller http://stackoverflow.com/users/123582 2009-07-17T12:52:48Z 2009-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>&lt;reporting&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-pmd-plugin&lt;/artifactId&gt; &lt;version&gt;2.4&lt;/version&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/reporting&gt; </code></pre>