You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2010/06/17 22:14:16 UTC

svn commit: r955726 - in /maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath: pom.xml validate.bsh

Author: bentmann
Date: Thu Jun 17 20:14:16 2010
New Revision: 955726

URL: http://svn.apache.org/viewvc?rev=955726&view=rev
Log:
o Decoupled test from questionable handling of dependencyManagement in dependencies

Modified:
    maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/pom.xml
    maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/validate.bsh

Modified: maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/pom.xml?rev=955726&r1=955725&r2=955726&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/pom.xml (original)
+++ maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/pom.xml Thu Jun 17 20:14:16 2010
@@ -41,6 +41,13 @@
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-project</artifactId>
       <version>2.0.6</version>
+      <exclusions>
+        <exclusion>
+          <!-- NOTE: Excluded because of questionable handling of dependencyManagement in maven-project:pom:2.0.6 -->
+          <groupId>classworlds</groupId>
+          <artifactId>classworlds</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>
 

Modified: maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/validate.bsh
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/validate.bsh?rev=955726&r1=955725&r2=955726&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/validate.bsh (original)
+++ maven/plugins/trunk/maven-dependency-plugin/src/it/build-classpath/validate.bsh Thu Jun 17 20:14:16 2010
@@ -10,7 +10,6 @@ classpath = StringUtils.replace( classpa
 List actual = Arrays.asList( classpath.split( ":" ) );
 
 List expected = new ArrayList();
-expected.add( "classworlds-1.1-alpha-2.jar" );
 expected.add( "junit-3.8.1.jar" );
 expected.add( "maven-artifact-2.0.6.jar" );
 expected.add( "maven-artifact-manager-2.0.6.jar" );