Lakshman Srilakshmanan wrote:
Hi Max,Page 58, in Better builds with Maven explains how to achieve this. Essentially you have to do the following. <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> <version>1.0-alpha-9</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.1</version> <scope>runtime</scope> </dependency> </dependencies>
I had already tried that, but it didn't seem to translate from normal dependencies to plugin dependencies.
Do you know if it is possible to make it work for plugin dependencies? How? Thanks -- Max Bowsher <[EMAIL PROTECTED]> http://www.mxtelecom.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
