Author: jdcasey Date: Fri Mar 16 22:18:14 2007 New Revision: 519240 URL: http://svn.apache.org/viewvc?view=rev&rev=519240 Log: Fixing plexus-archiver 1.0-alpha-8 to not pollute the classpath with plexus-component-api, and avoid IncompatibleClassChangeError on getLogger().
Modified: maven/plugins/trunk/maven-assembly-plugin/pom.xml Modified: maven/plugins/trunk/maven-assembly-plugin/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/pom.xml?view=diff&rev=519240&r1=519239&r2=519240 ============================================================================== --- maven/plugins/trunk/maven-assembly-plugin/pom.xml (original) +++ maven/plugins/trunk/maven-assembly-plugin/pom.xml Fri Mar 16 22:18:14 2007 @@ -230,7 +230,8 @@ </configuration> </plugin> <plugin> - <artifactId>maven-plug-it-plugin</artifactId> + <artifactId>maven-component-it-plugin</artifactId> + <version>1.0-SNAPSHOT</version> <executions> <execution> <id>stage-plugin</id> @@ -273,6 +274,12 @@ <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-archiver</artifactId> <version>1.0-alpha-8</version> + <exclusions> + <exclusion> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-component-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId>