mirror of https://github.com/apache/maven.git
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:
parent
037424a279
commit
e27b53202d
|
@ -28,7 +28,7 @@ public class MavenITmng2562Timestamp extends AbstractMavenIntegrationTestCase {
|
||||||
|
|
||||||
public MavenITmng2562Timestamp()
|
public MavenITmng2562Timestamp()
|
||||||
{
|
{
|
||||||
super( "(2.0.99,)"); // 2.1.0+ only
|
super( "[2.1.0-M1,)"); // 2.1.0+ only
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testitMNG2562() throws Exception {
|
public void testitMNG2562() throws Exception {
|
||||||
|
|
|
@ -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).
|
* otherwise, use the new resolver-status.properties file (new artifact code).
|
||||||
*/
|
*/
|
||||||
private File getUpdateCheckFile( File localRepo )
|
private File getUpdateCheckFile( File localRepo )
|
||||||
|
@ -289,8 +289,8 @@ public class MavenITmng3415JunkRepositoryMetadataTest
|
||||||
|
|
||||||
dir.mkdirs();
|
dir.mkdirs();
|
||||||
|
|
||||||
// < 2.1 (including snapshots)
|
// < 3.0 (including snapshots)
|
||||||
if ( matchesVersionRange( "(2.0.8,2.0.99)" ) )
|
if ( matchesVersionRange( "(2.0.8,2.999)" ) )
|
||||||
{
|
{
|
||||||
return new File( dir, "maven-metadata-testing-repo.xml" );
|
return new File( dir, "maven-metadata-testing-repo.xml" );
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,7 @@ public class MavenITmng3475BaseAlignedDir
|
||||||
|
|
||||||
public MavenITmng3475BaseAlignedDir()
|
public MavenITmng3475BaseAlignedDir()
|
||||||
{
|
{
|
||||||
super( "(2.0.99,)"); // 2.1.0+ only
|
super( "[2.1.0-M1,)"); // 2.1.0+ only
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testitMNG3475()
|
public void testitMNG3475()
|
||||||
|
|
|
@ -32,7 +32,7 @@ public class MavenITmng3535SelfReferentialProperties
|
||||||
|
|
||||||
public MavenITmng3535SelfReferentialProperties()
|
public MavenITmng3535SelfReferentialProperties()
|
||||||
{
|
{
|
||||||
super( "(2.0.99,2.99.99)" );
|
super( "[2.1.0-M1,2.99.99)" );
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testitMNG3535_ShouldSucceed()
|
public void testitMNG3535_ShouldSucceed()
|
||||||
|
|
|
@ -28,7 +28,7 @@ public class MavenITmng3536AppendedAbsolutePaths extends AbstractMavenIntegratio
|
||||||
|
|
||||||
public MavenITmng3536AppendedAbsolutePaths()
|
public MavenITmng3536AppendedAbsolutePaths()
|
||||||
{
|
{
|
||||||
super( "(2.0.99,)"); // 2.1.0+ only
|
super( "[2.1.0-M1,)"); // 2.1.0+ only
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testitMNG3536() throws Exception {
|
public void testitMNG3536() throws Exception {
|
||||||
|
|
|
@ -36,7 +36,7 @@ public class MavenITmng3703ExecutionProjectWithRelativePathsTest
|
||||||
{
|
{
|
||||||
public 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()
|
public void testForkFromMojo()
|
||||||
|
|
Loading…
Reference in New Issue