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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0aec18a  [MANTRUN-224] Update ITs
0aec18a is described below

commit 0aec18ab5301bc8307f96e6d5d5778365f9f3b7d
Author: Sylwester Lachiewicz <slachiew...@apache.org>
AuthorDate: Wed Sep 16 08:12:21 2020 +0200

    [MANTRUN-224] Update ITs
---
 src/it/MANTRUN-208/pom.xml               | 2 +-
 src/it/antrun-default-test/pom.xml       | 2 +-
 src/it/classpath-ref-test/pom.xml        | 2 +-
 src/it/classpath-test-scope-test/pom.xml | 2 +-
 src/it/env-var-test/pom.xml              | 2 +-
 src/it/filesets-test/pom.xml             | 2 +-
 src/it/filesets-test/verify.bsh          | 8 ++++----
 src/it/local-repo-prop-test/pom.xml      | 2 +-
 src/it/properties-test/pom.xml           | 2 +-
 9 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/it/MANTRUN-208/pom.xml b/src/it/MANTRUN-208/pom.xml
index fd6b221..298b53d 100644
--- a/src/it/MANTRUN-208/pom.xml
+++ b/src/it/MANTRUN-208/pom.xml
@@ -34,7 +34,7 @@ under the License.
         <dependency>
             <groupId>org.junit.jupiter</groupId>
             <artifactId>junit-jupiter-engine</artifactId>
-            <version>5.6.2</version>
+            <version>5.7.0</version>
             <scope>test</scope>
         </dependency>
     </dependencies>
diff --git a/src/it/antrun-default-test/pom.xml 
b/src/it/antrun-default-test/pom.xml
index df540f7..3bb4c5b 100644
--- a/src/it/antrun-default-test/pom.xml
+++ b/src/it/antrun-default-test/pom.xml
@@ -34,7 +34,7 @@ under the License.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>5.6.2</version>
+      <version>5.7.0</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/src/it/classpath-ref-test/pom.xml 
b/src/it/classpath-ref-test/pom.xml
index e7d4865..a2e5cbc 100644
--- a/src/it/classpath-ref-test/pom.xml
+++ b/src/it/classpath-ref-test/pom.xml
@@ -34,7 +34,7 @@ under the License.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>5.6.2</version>
+      <version>5.7.0</version>
     </dependency>
   </dependencies>
 
diff --git a/src/it/classpath-test-scope-test/pom.xml 
b/src/it/classpath-test-scope-test/pom.xml
index f3a8f60..434261e 100644
--- a/src/it/classpath-test-scope-test/pom.xml
+++ b/src/it/classpath-test-scope-test/pom.xml
@@ -34,7 +34,7 @@ under the License.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>5.6.2</version>
+      <version>5.7.0</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/src/it/env-var-test/pom.xml b/src/it/env-var-test/pom.xml
index 0ab6a12..a41aaf6 100644
--- a/src/it/env-var-test/pom.xml
+++ b/src/it/env-var-test/pom.xml
@@ -34,7 +34,7 @@ under the License.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>5.6.2</version>
+      <version>5.7.0</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/src/it/filesets-test/pom.xml b/src/it/filesets-test/pom.xml
index 743aa0f..c26aa4e 100644
--- a/src/it/filesets-test/pom.xml
+++ b/src/it/filesets-test/pom.xml
@@ -121,7 +121,7 @@ under the License.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>5.6.2</version>
+      <version>5.7.0</version>
     </dependency>
   </dependencies>
 
diff --git a/src/it/filesets-test/verify.bsh b/src/it/filesets-test/verify.bsh
index 75aaddf..235ba8f 100644
--- a/src/it/filesets-test/verify.bsh
+++ b/src/it/filesets-test/verify.bsh
@@ -27,8 +27,8 @@ import org.codehaus.plexus.util.*;
 try
 {
     File depsDir = new File( basedir, "target/dependencies" );
-    File antJar = new File( depsDir, "ant-1.10.7.jar" );
-    File junitJar = new File( depsDir, "junit-jupiter-engine-5.6.2.jar" );
+    File antJar = new File( depsDir, "ant-1.10.8.jar" );
+    File junitJar = new File( depsDir, "junit-jupiter-engine-5.7.0.jar" );
 
     if ( ! antJar.exists() || antJar.isDirectory() )
     {
@@ -42,8 +42,8 @@ try
     }
 
     File deps2Dir = new File( basedir, "target/dependencies2" );
-    antJar = new File( deps2Dir, "ant-1.10.7.jar" );
-    junitJar = new File( deps2Dir, "junit-jupiter-api-5.6.2.jar" );
+    antJar = new File( deps2Dir, "ant-1.10.8.jar" );
+    junitJar = new File( deps2Dir, "junit-jupiter-api-5.7.0.jar" );
 
     if ( ! antJar.exists() || antJar.isDirectory() )
     {
diff --git a/src/it/local-repo-prop-test/pom.xml 
b/src/it/local-repo-prop-test/pom.xml
index ea59915..25bf55a 100644
--- a/src/it/local-repo-prop-test/pom.xml
+++ b/src/it/local-repo-prop-test/pom.xml
@@ -34,7 +34,7 @@ under the License.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>5.6.2</version>
+      <version>5.7.0</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/src/it/properties-test/pom.xml b/src/it/properties-test/pom.xml
index 511857f..74bd3a8 100644
--- a/src/it/properties-test/pom.xml
+++ b/src/it/properties-test/pom.xml
@@ -34,7 +34,7 @@ under the License.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>5.6.2</version>
+      <version>5.7.0</version>
     </dependency>
   </dependencies>
 

Reply via email to