You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2020/10/03 14:49:57 UTC

[maven-integration-testing] branch MNG-6965 created (now 0c1c8ea)

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch MNG-6965
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git.


      at 0c1c8ea  Explicitly igonre Plexus Utils in 3.7.0

This branch includes the following new commits:

     new d376d57  Test not valid for 3.7.0 anymore
     new 0c1c8ea  Explicitly igonre Plexus Utils in 3.7.0

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-integration-testing] 01/02: Test not valid for 3.7.0 anymore

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MNG-6965
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git

commit d376d5784729331de5fdf1966dba8d32e0a54ef3
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Oct 3 16:48:16 2020 +0200

    Test not valid for 3.7.0 anymore
---
 .../org/apache/maven/it/MavenITmng3819PluginDepPlexusUtilsTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3819PluginDepPlexusUtilsTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3819PluginDepPlexusUtilsTest.java
index 47ff8a2..c7b08cc 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3819PluginDepPlexusUtilsTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3819PluginDepPlexusUtilsTest.java
@@ -37,7 +37,7 @@ public class MavenITmng3819PluginDepPlexusUtilsTest
 
     public MavenITmng3819PluginDepPlexusUtilsTest()
     {
-        super( "(2.0.1,)" );
+        super( "(2.0.1,3.7.0)" );
     }
 
     /**


[maven-integration-testing] 02/02: Explicitly igonre Plexus Utils in 3.7.0

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MNG-6965
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git

commit 0c1c8ea9ebb44e60513bb03b2910a2f78eb8f935
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Oct 3 16:49:44 2020 +0200

    Explicitly igonre Plexus Utils in 3.7.0
---
 .../maven/it/MavenITmng5783PluginDependencyFiltering.java  | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5783PluginDependencyFiltering.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5783PluginDependencyFiltering.java
index ec5242c..17efc24 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5783PluginDependencyFiltering.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5783PluginDependencyFiltering.java
@@ -31,10 +31,20 @@ public class MavenITmng5783PluginDependencyFiltering
         // Note that plugin dependencies always include plugin itself and plexus-utils
 
         List<String> dependencies = verifier.loadLines( "target/dependencies.txt", "UTF-8" );
-        assertEquals( 3, dependencies.size() );
+        if ( matchesVersionRange( "(,3.7.0)" ) )
+        {
+            assertEquals( 3, dependencies.size() );
+        }
+        else
+        {
+            assertEquals( 2, dependencies.size() );
+        }
         assertEquals( "mng-5783-plugin-dependency-filtering:mng-5783-plugin-dependency-filtering-plugin:maven-plugin:0.1",
                       dependencies.get( 0 ) );
         assertEquals( "org.slf4j:slf4j-api:jar:1.7.5", dependencies.get( 1 ) );
-        assertEquals( "org.codehaus.plexus:plexus-utils:jar:1.1", dependencies.get( 2 ) );
+        if ( matchesVersionRange( "(,3.7.0)" ) )
+        {
+            assertEquals( "org.codehaus.plexus:plexus-utils:jar:1.1", dependencies.get( 2 ) );
+        }
     }
 }