You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2013/03/18 21:27:31 UTC

git commit: o accounting for the use of Eclipse Aether and the use of real plugins that have direct linkage to Sonatype Aether

Updated Branches:
  refs/heads/master 8924ebc73 -> 3f94086b3


o accounting for the use of Eclipse Aether and the use of real plugins that have direct linkage to Sonatype Aether


Project: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/commit/3f94086b
Tree: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/3f94086b
Diff: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/3f94086b

Branch: refs/heads/master
Commit: 3f94086b3cf1477087cfdafba514068be265d1cc
Parents: 8924ebc
Author: Jason van Zyl <ja...@tesla.io>
Authored: Mon Mar 18 13:26:46 2013 -0700
Committer: Jason van Zyl <ja...@tesla.io>
Committed: Mon Mar 18 13:26:46 2013 -0700

----------------------------------------------------------------------
 .../org/apache/maven/it/IntegrationTestSuite.java  |    9 +++++++++
 ...avenITmng3372DirectInvocationOfPluginsTest.java |    2 +-
 .../it/MavenITmng3684BuildPluginParameterTest.java |    2 +-
 ...g3703ExecutionProjectWithRelativePathsTest.java |    2 +-
 ...MavenITmng3743ForkWithPluginManagementTest.java |    2 +-
 ...ingBasedCompLookupFromChildPluginRealmTest.java |    2 +-
 6 files changed, 14 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/3f94086b/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java b/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java
index 87fe9c1..6db7ff8 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java
@@ -107,6 +107,15 @@ public class IntegrationTestSuite
         // suite.addTestSuite( MavenIT0108SnapshotUpdateTest.class ); -- MNG-3137
 
         //suite.addTestSuite( MavenITmng5208EventSpyParallelTest.class );
+        
+        
+        // These do not work as a result of the Eclipse Aether change. They are directly using the Site and Dependency plugins
+        // 
+        //MavenITmng3743ForkWithPluginManagementTest>AbstractMavenIntegrationTestCase.runTest:220->testitMNG3743:58 » Verification
+        //MavenITmng3703ExecutionProjectWithRelativePathsTest>AbstractMavenIntegrationTestCase.runTest:220->testForkFromReport:86 » Verification
+        //MavenITmng3684BuildPluginParameterTest>AbstractMavenIntegrationTestCase.runTest:220->testitMNG3684:63 » Verification
+        //MavenITmng3372DirectInvocationOfPluginsTest>AbstractMavenIntegrationTestCase.runTest:220->testDependencyTreeInvocation:83 » Verification
+        //MavenITmng5019StringBasedCompLookupFromChildPluginRealmTest>AbstractMavenIntegrationTestCase.runTest:220->testit:56 ? Verification
         suite.addTestSuite( MavenITmng5445LegacyStringSearchModelInterpolatorTest.class );
         suite.addTestSuite( MavenITmng5387ArtifactReplacementPlugin.class );
         suite.addTestSuite( MavenITmng5382Jsr330Plugin.class );

http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/3f94086b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3372DirectInvocationOfPluginsTest.java
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3372DirectInvocationOfPluginsTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3372DirectInvocationOfPluginsTest.java
index 14e076f..9693ae3 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3372DirectInvocationOfPluginsTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3372DirectInvocationOfPluginsTest.java
@@ -36,7 +36,7 @@ public class MavenITmng3372DirectInvocationOfPluginsTest
 
     public MavenITmng3372DirectInvocationOfPluginsTest()
     {
-        super( "(2.0.5,)" );
+        super( "(2.0.5,3.1-SNAPSHOT)" );
     }
 
     public void testitMNG3372()

http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/3f94086b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3684BuildPluginParameterTest.java
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3684BuildPluginParameterTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3684BuildPluginParameterTest.java
index 43fc78d..35b7ee1 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3684BuildPluginParameterTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3684BuildPluginParameterTest.java
@@ -36,7 +36,7 @@ public class MavenITmng3684BuildPluginParameterTest
 {
     public MavenITmng3684BuildPluginParameterTest()
     {
-        super( "(2.0.9,)" );
+        super( "(2.0.9,3.1-SNAPSHOT)" );
     }
     
     public void testitMNG3684 ()

http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/3f94086b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java
index 356310c..b0c4433 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3703ExecutionProjectWithRelativePathsTest.java
@@ -36,7 +36,7 @@ public class MavenITmng3703ExecutionProjectWithRelativePathsTest
 {
     public MavenITmng3703ExecutionProjectWithRelativePathsTest()
     {
-        super( "[2.1.0-M1,)" ); // only test in 2.1.0+
+        super( "[2.1.0-M1,3.1-SNAPSHOT)" ); // only test in 2.1.0+
     }
 
     public void testForkFromMojo()

http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/3f94086b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3743ForkWithPluginManagementTest.java
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3743ForkWithPluginManagementTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3743ForkWithPluginManagementTest.java
index 5a57a60..b4d1df0 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3743ForkWithPluginManagementTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3743ForkWithPluginManagementTest.java
@@ -38,7 +38,7 @@ public class MavenITmng3743ForkWithPluginManagementTest
 {
     public MavenITmng3743ForkWithPluginManagementTest()
     {
-        super( "(2.0.8,)" ); // only test in 2.0.9+
+        super( "(2.0.8,3.1-SNAPSHOT)" ); // only test in 2.0.9+
     }
 
     public void testitMNG3743 ()

http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/3f94086b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5019StringBasedCompLookupFromChildPluginRealmTest.java
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5019StringBasedCompLookupFromChildPluginRealmTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5019StringBasedCompLookupFromChildPluginRealmTest.java
index 17fe4bd..db61880 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5019StringBasedCompLookupFromChildPluginRealmTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5019StringBasedCompLookupFromChildPluginRealmTest.java
@@ -33,7 +33,7 @@ public class MavenITmng5019StringBasedCompLookupFromChildPluginRealmTest
 
     public MavenITmng5019StringBasedCompLookupFromChildPluginRealmTest()
     {
-        super( "[3.0.3,)" );
+        super( "[3.0.3,3.1-SNAPSHOT)" );
     }
 
     /**