now that 2.1.0-M1 is released, use it as a more descriptive lower bound

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@707919 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2008-10-26 00:04:56 +00:00
parent 037424a279
commit e27b53202d
6 changed files with 8 additions and 8 deletions

View File

@ -28,7 +28,7 @@ public class MavenITmng2562Timestamp extends AbstractMavenIntegrationTestCase {
public MavenITmng2562Timestamp()
{
super( "(2.0.99,)"); // 2.1.0+ only
super( "[2.1.0-M1,)"); // 2.1.0+ only
}
public void testitMNG2562() throws Exception {

View File

@ -280,7 +280,7 @@ public class MavenITmng3415JunkRepositoryMetadataTest
}
/**
* If the current maven version is < 2.1, we'll use the metadata file itself (old maven-artifact code)...
* If the current maven version is < 3.0, we'll use the metadata file itself (old maven-artifact code)...
* otherwise, use the new resolver-status.properties file (new artifact code).
*/
private File getUpdateCheckFile( File localRepo )
@ -289,8 +289,8 @@ public class MavenITmng3415JunkRepositoryMetadataTest
dir.mkdirs();
// < 2.1 (including snapshots)
if ( matchesVersionRange( "(2.0.8,2.0.99)" ) )
// < 3.0 (including snapshots)
if ( matchesVersionRange( "(2.0.8,2.999)" ) )
{
return new File( dir, "maven-metadata-testing-repo.xml" );
}

View File

@ -30,7 +30,7 @@ public class MavenITmng3475BaseAlignedDir
public MavenITmng3475BaseAlignedDir()
{
super( "(2.0.99,)"); // 2.1.0+ only
super( "[2.1.0-M1,)"); // 2.1.0+ only
}
public void testitMNG3475()

View File

@ -32,7 +32,7 @@ public class MavenITmng3535SelfReferentialProperties
public MavenITmng3535SelfReferentialProperties()
{
super( "(2.0.99,2.99.99)" );
super( "[2.1.0-M1,2.99.99)" );
}
public void testitMNG3535_ShouldSucceed()

View File

@ -28,7 +28,7 @@ public class MavenITmng3536AppendedAbsolutePaths extends AbstractMavenIntegratio
public MavenITmng3536AppendedAbsolutePaths()
{
super( "(2.0.99,)"); // 2.1.0+ only
super( "[2.1.0-M1,)"); // 2.1.0+ only
}
public void testitMNG3536() throws Exception {

View File

@ -36,7 +36,7 @@ public class MavenITmng3703ExecutionProjectWithRelativePathsTest
{
public MavenITmng3703ExecutionProjectWithRelativePathsTest()
{
super( "(2.0.99,)" ); // only test in 2.0.9+
super( "[2.1.0-M1,)" ); // only test in 2.1.0+
}
public void testForkFromMojo()