You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2020/06/22 22:43:22 UTC

[maven-surefire] 05/07: removed unnecessary junit5 versions 5.3.0, 5.4.0, 5.5.0 in the ITs

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

tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit b925ea589931649de26b8055530395cb6c454d74
Author: tibordigana <ti...@apache.org>
AuthorDate: Tue Jun 23 00:30:50 2020 +0200

    removed unnecessary junit5 versions 5.3.0, 5.4.0, 5.5.0 in the ITs
---
 surefire-its/pom.xml                               | 24 ----------------------
 .../apache/maven/surefire/its/JUnitPlatformIT.java |  5 +----
 .../its/JUnitPlatformRerunFailingTestsIT.java      |  2 +-
 3 files changed, 2 insertions(+), 29 deletions(-)

diff --git a/surefire-its/pom.xml b/surefire-its/pom.xml
index cd5cd5c..930bbd1 100644
--- a/surefire-its/pom.xml
+++ b/surefire-its/pom.xml
@@ -627,12 +627,6 @@
                                 <configuration><artifact>org.junit.vintage:junit-vintage-engine:5.2.0</artifact></configuration>
                             </execution>
                             <execution>
-                                <id>vintage-5.3</id>
-                                <phase>pre-integration-test</phase>
-                                <goals><goal>get</goal></goals>
-                                <configuration><artifact>org.junit.vintage:junit-vintage-engine:5.3.0</artifact></configuration>
-                            </execution>
-                            <execution>
                                 <id>vintage-5.3.2</id>
                                 <phase>pre-integration-test</phase>
                                 <goals><goal>get</goal></goals>
@@ -651,12 +645,6 @@
                                 <configuration><artifact>org.junit.vintage:junit-vintage-engine:5.4.2</artifact></configuration>
                             </execution>
                             <execution>
-                                <id>vintage-5.5</id>
-                                <phase>pre-integration-test</phase>
-                                <goals><goal>get</goal></goals>
-                                <configuration><artifact>org.junit.vintage:junit-vintage-engine:5.5.0</artifact></configuration>
-                            </execution>
-                            <execution>
                                 <id>vintage-5.5.2</id>
                                 <phase>pre-integration-test</phase>
                                 <goals><goal>get</goal></goals>
@@ -687,12 +675,6 @@
                                 <configuration><artifact>org.junit.jupiter:junit-jupiter-engine:5.2.0</artifact></configuration>
                             </execution>
                             <execution>
-                                <id>jupiter-5.3</id>
-                                <phase>pre-integration-test</phase>
-                                <goals><goal>get</goal></goals>
-                                <configuration><artifact>org.junit.jupiter:junit-jupiter-engine:5.3.0</artifact></configuration>
-                            </execution>
-                            <execution>
                                 <id>jupiter-5.3.2</id>
                                 <phase>pre-integration-test</phase>
                                 <goals><goal>get</goal></goals>
@@ -711,12 +693,6 @@
                                 <configuration><artifact>org.junit.jupiter:junit-jupiter-engine:5.4.2</artifact></configuration>
                             </execution>
                             <execution>
-                                <id>jupiter-5.5</id>
-                                <phase>pre-integration-test</phase>
-                                <goals><goal>get</goal></goals>
-                                <configuration><artifact>org.junit.jupiter:junit-jupiter-engine:5.5.0</artifact></configuration>
-                            </execution>
-                            <execution>
                                 <id>jupiter-5.5.2</id>
                                 <phase>pre-integration-test</phase>
                                 <goals><goal>get</goal></goals>
diff --git a/surefire-its/src/test/java/org/apache/maven/surefire/its/JUnitPlatformIT.java b/surefire-its/src/test/java/org/apache/maven/surefire/its/JUnitPlatformIT.java
index 073cbf9..b229ab7 100644
--- a/surefire-its/src/test/java/org/apache/maven/surefire/its/JUnitPlatformIT.java
+++ b/surefire-its/src/test/java/org/apache/maven/surefire/its/JUnitPlatformIT.java
@@ -54,12 +54,9 @@ public class JUnitPlatformIT
     {
         ArrayList<Object[]> args = new ArrayList<>();
         args.add( new Object[] { "5.2.0", "0.8.0" } );
-        args.add( new Object[] { "5.3.0", "0.8.15" } );
         args.add( new Object[] { "5.3.2", "0.9.0" } );
-        args.add( new Object[] { "5.4.0", "0.9.3" } );
         args.add( new Object[] { "5.4.2", "1.0.0" } );
-        args.add( new Object[] { "5.5.0", "1.1.0" } );
-        args.add( new Object[] { "5.5.2", "1.1.0" } );
+        args.add( new Object[] { "5.5.2", "0.8.15" } );
         args.add( new Object[] { "5.6.2", "1.2.7" } );
         //args.add( new Object[] { "5.7.0-SNAPSHOT", "1.2.7" } );
         return args;
diff --git a/surefire-its/src/test/java/org/apache/maven/surefire/its/JUnitPlatformRerunFailingTestsIT.java b/surefire-its/src/test/java/org/apache/maven/surefire/its/JUnitPlatformRerunFailingTestsIT.java
index 1ae105f..2b2b3b4 100644
--- a/surefire-its/src/test/java/org/apache/maven/surefire/its/JUnitPlatformRerunFailingTestsIT.java
+++ b/surefire-its/src/test/java/org/apache/maven/surefire/its/JUnitPlatformRerunFailingTestsIT.java
@@ -36,7 +36,7 @@ import static org.apache.maven.surefire.its.fixture.HelperAssertions.assumeJavaV
 @SuppressWarnings( "checkstyle:magicnumber" )
 public class JUnitPlatformRerunFailingTestsIT extends SurefireJUnit4IntegrationTestCase
 {
-    private static final String VERSION = "5.5.1";
+    private static final String VERSION = "5.5.2";
 
     private SurefireLauncher unpack()
     {