Hi,
You can use artifact exclusions for plugin dependencies as well.
For example:
<plugins>
<plugin>
<groupId>....</groupId>
<artifactId>...</artifactId>
<version>...</version>
<dependencies>
<dependency>
<groupId>kung.fu</groupId>
<artifactId>kick</artifactId>
<version>1.2</version>
<exclusions>
<exclusion>
<groupId>com.foo</groupId>
<artifactId>bar</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
Good luck,
Martin
--
View this message in context:
http://maven.40175.n5.nabble.com/exclude-plugin-dependencies-tp4590474p4590488.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]