mirror of https://github.com/apache/maven.git
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:
parent
13e85d8b91
commit
7ed71827d6
|
@ -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" ) );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue