You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2008/10/26 02:04:57 UTC

svn commit: r707919 - /maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/

Author: brett
Date: Sat Oct 25 17:04:56 2008
New Revision: 707919

URL: http://svn.apache.org/viewvc?rev=707919&view=rev
Log:
now that 2.1.0-M1 is released, use it as a more descriptive lower bound

Modified:
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2562Timestamp.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3415JunkRepositoryMetadataTest.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3475BaseAlignedDir.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3535SelfReferentialProperties.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3536AppendedAbsolutePaths.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2562Timestamp.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2562Timestamp.java?rev=707919&r1=707918&r2=707919&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2562Timestamp.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2562Timestamp.java Sat Oct 25 17:04:56 2008
@@ -28,7 +28,7 @@
     
     public MavenITmng2562Timestamp()
     {
-        super( "(2.0.99,)"); // 2.1.0+ only
+        super( "[2.1.0-M1,)"); // 2.1.0+ only
     }
 
     public void testitMNG2562() throws Exception {

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3415JunkRepositoryMetadataTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3415JunkRepositoryMetadataTest.java?rev=707919&r1=707918&r2=707919&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3415JunkRepositoryMetadataTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3415JunkRepositoryMetadataTest.java Sat Oct 25 17:04:56 2008
@@ -280,7 +280,7 @@
     }
 
     /**
-     * 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 @@
 
         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" );
         }

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3475BaseAlignedDir.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3475BaseAlignedDir.java?rev=707919&r1=707918&r2=707919&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3475BaseAlignedDir.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3475BaseAlignedDir.java Sat Oct 25 17:04:56 2008
@@ -30,7 +30,7 @@
     
     public MavenITmng3475BaseAlignedDir()
     {
-        super( "(2.0.99,)"); // 2.1.0+ only
+        super( "[2.1.0-M1,)"); // 2.1.0+ only
     }
 
     public void testitMNG3475()

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3535SelfReferentialProperties.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3535SelfReferentialProperties.java?rev=707919&r1=707918&r2=707919&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3535SelfReferentialProperties.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3535SelfReferentialProperties.java Sat Oct 25 17:04:56 2008
@@ -32,7 +32,7 @@
 
     public MavenITmng3535SelfReferentialProperties()
     {
-        super( "(2.0.99,2.99.99)" );
+        super( "[2.1.0-M1,2.99.99)" );
     }
 
     public void testitMNG3535_ShouldSucceed()

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3536AppendedAbsolutePaths.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3536AppendedAbsolutePaths.java?rev=707919&r1=707918&r2=707919&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3536AppendedAbsolutePaths.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3536AppendedAbsolutePaths.java Sat Oct 25 17:04:56 2008
@@ -28,7 +28,7 @@
     
     public MavenITmng3536AppendedAbsolutePaths()
     {
-        super( "(2.0.99,)"); // 2.1.0+ only
+        super( "[2.1.0-M1,)"); // 2.1.0+ only
     }
 
     public void testitMNG3536() throws Exception {

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java?rev=707919&r1=707918&r2=707919&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java Sat Oct 25 17:04:56 2008
@@ -36,7 +36,7 @@
 {
     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()