mirror of
https://github.com/apache/maven.git
synced 2025-02-22 01:45:37 +00:00
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@551680 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9d880a8e8f
commit
5ea675b943
@ -33,23 +33,11 @@ public class IntegrationTestSuite
|
||||
|
||||
public static Test suite() throws VerificationException
|
||||
{
|
||||
Verifier verifier = null;
|
||||
try
|
||||
{
|
||||
verifier = new Verifier( "" );
|
||||
String mavenVersion = verifier.getMavenVersion();
|
||||
String mavenVersion = new Verifier( "" ).getMavenVersion();
|
||||
|
||||
out.println( "Running integration tests for Maven " + mavenVersion );
|
||||
out.println( "Running integration tests for Maven " + mavenVersion );
|
||||
|
||||
System.setProperty( "maven.version", mavenVersion );
|
||||
}
|
||||
finally
|
||||
{
|
||||
if ( verifier != null )
|
||||
{
|
||||
verifier.resetStreams();
|
||||
}
|
||||
}
|
||||
System.setProperty( "maven.version", mavenVersion );
|
||||
|
||||
TestSuite suite = new TestSuite();
|
||||
suite.addTestSuite( MavenIT0000Test.class );
|
||||
@ -175,8 +163,6 @@ public static Test suite() throws VerificationException
|
||||
// not fixed yet
|
||||
//suite.addTestSuite( MavenIT0121TransitiveDepManVersion.class ); -- MNG-3038
|
||||
// suite.addTestSuite( MavenIT0122ReactorDependencyResolutionTest.class ); -- MNG-3023
|
||||
// suite.addTestSuite( MavenIT0123SnapshotRangeRepositoryTest.class ); -- MNG-2994
|
||||
// suite.addTestSuite( MavenIT0124PomExtensionComponentOverrideTest.class ); -- MNG-2771
|
||||
return suite;
|
||||
}
|
||||
}
|
@ -14,6 +14,9 @@ rm -rf $repo/commons-logging
|
||||
# Run the compile phase for the child project. This will bring down commons-logging 1.0.1
|
||||
( cd issue; $mvn compile )
|
||||
# Deploy the parent POM with an update version of the commons-logging dependency -> 1.0.2
|
||||
|
||||
read
|
||||
|
||||
( cd parent ; $mvn -f pom2.xml deploy )
|
||||
# Move the original commons-loggings deps out of the way
|
||||
mv $repo/commons-logging $repo/commons-logging-1.0.1
|
||||
|
Loading…
x
Reference in New Issue
Block a user