o Strengthened IT to check class path, too

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@749617 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-03-03 13:55:03 +00:00
parent 13e85d8b91
commit 7ed71827d6
2 changed files with 6 additions and 0 deletions

View File

@ -65,6 +65,10 @@ public class MavenITmng4056ClassifierBasedDepResolutionFromReactorTest
artifacts.contains( "org.apache.maven.its.mng4056:producer:javadoc:javadoc:0.1" ) );
assertTrue( artifacts.toString(),
artifacts.contains( "org.apache.maven.its.mng4056:producer:ejb-client:client:0.1" ) );
List classpath = verifier.loadLines( "consumer/target/compile.txt", "UTF-8" );
assertTrue( classpath.toString(), classpath.contains( "producer/test.jar" ) );
assertTrue( classpath.toString(), classpath.contains( "producer/client.jar" ) );
}
}

View File

@ -87,6 +87,8 @@ under the License.
</goals>
<configuration>
<projectArtifacts>target/artifacts.txt</projectArtifacts>
<compileClassPath>target/compile.txt</compileClassPath>
<significantPathLevels>2</significantPathLevels>
</configuration>
</execution>
</executions>