Maven 2 plugin, build + surfire - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T05:30:57Z http://stackoverflow.com/feeds/question/540697 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/540697/maven-2-plugin-build-surfire 2 Maven 2 plugin, build + surfire kukudas http://stackoverflow.com/users/48402 2009-02-12T10:09:52Z 2009-07-30T22:12:14Z <p>hi,</p> <p>If i define a plugin in the &lt;build&gt; tag and want to use this in my site command how do i do that? Do i have to define the plugin within &lt;reporting&gt; tag again? </p> <p>And how about the configuration which i probably have done within the build tag and want to take place at the reporting tag as well? (i dont want to specifie for example a location of a configuration file twice just to use a plugin in 2 lifecycles)</p> <p>As example: I define my checkstyle plugin in the build tag and configrue a custom location for the rules to be used. I do that because the rules are packed in a jar so i can define it as dependency. This would not be possible if i do it in the reporting tag. But i need to use this plugin in the reporting tag aswell so surfire can generate a report for checkstyle. So i have to define the plugin within the reporting tag aswell. </p> <p>Maybe i'm doing something complete wrong here but i don't see how i can do it other then that. What i dont like is that i have 1 plugin twice in my pom (in the build tag and reporting tag).</p> <p>I hope somebody can verify my solution is ok, or give me an advise how to do it better.</p> <p>thx</p> <p>kuku</p> http://stackoverflow.com/questions/540697/maven-2-plugin-build-surfire/540744#540744 3 Answer by krosenvold for Maven 2 plugin, build + surfire krosenvold http://stackoverflow.com/users/23691 2009-02-12T10:30:33Z 2009-02-12T10:30:33Z <p>A maven plugin is typically bound to execution in a given lifecycle phase when you define it. The plugin itself specifies which lifecycle phase this is, but you can change this if you have special needs. </p> <p>If you have a multi-module build you can define a set of plugins with all parameters required in a common parent-pom. This will normally be executed for every sub-module in the build. If you do not want this to happen you can define it (in the parent pom) like this:</p> <pre><code>&lt;plugin&gt; &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt; &lt;configuration&gt; &lt;skip&gt;true&lt;/skip&gt; &lt;/configuration&gt; ... More plugin cofniguration stuff ... &lt;/plugin&gt; </code></pre> <p>If you in one or more nested moudules want to enable this plugin you can just say:</p> <pre><code>&lt;plugin&gt; &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt; &lt;configuration&gt; &lt;skip&gt;false&lt;/skip&gt; &lt;/configuration&gt; ... Maybe Configuration .... &lt;/plugin&gt; </code></pre> <p>In that specific module. You can choose if you want to reconfigure the default parameters which are inherited from the parent definition or not.</p> <p>I think this is what you're looking for ?</p> http://stackoverflow.com/questions/540697/maven-2-plugin-build-surfire/553980#553980 1 Answer by Matthew McCullough for Maven 2 plugin, build + surfire Matthew McCullough http://stackoverflow.com/users/56039 2009-02-16T17:55:24Z 2009-02-16T17:55:24Z <p>In addition to KRosenvold's answer, you can also minimize configuration by declaring a plugin in the <code>&lt;pluginManagment&gt;</code> section, perhaps at your <a href="http://maven.apache.org/pom.html#Inheritance" rel="nofollow">topmost pom in the inheritance chain</a>, and then you can <a href="http://maven.apache.org/pom.html#Plugin_Management" rel="nofollow">omit specifying the version of the plugin in all the other places you are declaring it's use</a>.</p> <p>Parent Pom:</p> <pre><code>&lt;pluginManagement&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt; &lt;version&gt;2.2-beta-1&lt;/version&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;pluginManagement&gt; </code></pre> <p>Child Pom:</p> <pre><code>&lt;plugins&gt; &lt;plugin&gt; &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt; &lt;/plugin&gt; &lt;/plugins&gt; </code></pre>