Maven 2 plugin, build + surfire - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T05:30:57Zhttp://stackoverflow.com/feeds/question/540697http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/540697/maven-2-plugin-build-surfire2Maven 2 plugin, build + surfirekukudashttp://stackoverflow.com/users/484022009-02-12T10:09:52Z2009-07-30T22:12:14Z
<p>hi,</p>
<p>If i define a plugin in the <build> tag and want to use this in my site command how do i do that? Do i have to define the plugin within <reporting> 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#5407443Answer by krosenvold for Maven 2 plugin, build + surfirekrosenvoldhttp://stackoverflow.com/users/236912009-02-12T10:30:33Z2009-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><plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
... More plugin cofniguration stuff ...
</plugin>
</code></pre>
<p>If you in one or more nested moudules want to enable this plugin you can just say:</p>
<pre><code><plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
... Maybe Configuration ....
</plugin>
</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#5539801Answer by Matthew McCullough for Maven 2 plugin, build + surfireMatthew McCulloughhttp://stackoverflow.com/users/560392009-02-16T17:55:24Z2009-02-16T17:55:24Z<p>In addition to KRosenvold's answer, you can also minimize configuration by declaring a plugin in the <code><pluginManagment></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><pluginManagement>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-1</version>
</plugin>
</plugins>
<pluginManagement>
</code></pre>
<p>Child Pom:</p>
<pre><code><plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</code></pre>