This commit is contained in:
Jason van Zyl 2007-06-28 19:40:16 +00:00
parent 9d880a8e8f
commit 5ea675b943
3 changed files with 6 additions and 17 deletions

View File

@ -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;
}
}

View File

@ -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