You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2019/04/17 14:20:22 UTC

[maven-antrun-plugin] 01/01: [MANTRUN-214] Upgrade to Ant 1.9.14

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

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

commit f7c74861233953311d2926f906fe37c5a06f08f8
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Wed Apr 17 15:04:26 2019 +0200

    [MANTRUN-214] Upgrade to Ant 1.9.14
---
 pom.xml                         | 2 +-
 src/it/custom-task-test/pom.xml | 4 ++--
 src/it/filesets-test/pom.xml    | 2 +-
 src/it/filesets-test/verify.bsh | 4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2caf72b..e7de2b0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -95,7 +95,7 @@ under the License.
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.9.4</version>
+      <version>1.9.14</version>
     </dependency>
 
     <dependency>
diff --git a/src/it/custom-task-test/pom.xml b/src/it/custom-task-test/pom.xml
index 5d187ab..f4b99a8 100644
--- a/src/it/custom-task-test/pom.xml
+++ b/src/it/custom-task-test/pom.xml
@@ -32,9 +32,9 @@ under the License.
 
   <dependencies>
     <dependency>
+      <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
-      <groupId>ant</groupId>
-      <version>1.6.5</version>
+      <version>1.9.14</version>
     </dependency>
   </dependencies>
 
diff --git a/src/it/filesets-test/pom.xml b/src/it/filesets-test/pom.xml
index a897780..aa6267a 100755
--- a/src/it/filesets-test/pom.xml
+++ b/src/it/filesets-test/pom.xml
@@ -70,7 +70,7 @@ under the License.
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.7.1</version>
+      <version>1.9.14</version>
     </dependency>
     <dependency>
       <groupId>junit</groupId>
diff --git a/src/it/filesets-test/verify.bsh b/src/it/filesets-test/verify.bsh
index cb7e4cd..ad846c5 100644
--- a/src/it/filesets-test/verify.bsh
+++ b/src/it/filesets-test/verify.bsh
@@ -27,7 +27,7 @@ import org.codehaus.plexus.util.*;
 try
 {
     File depsDir = new File( basedir, "target/dependencies" );
-    File antJar = new File( depsDir, "ant-1.7.1.jar" );
+    File antJar = new File( depsDir, "ant-1.9.14.jar" );
     File junitJar = new File( depsDir, "junit-4.12.jar" );
 
     if ( ! antJar.exists() || antJar.isDirectory() )
@@ -42,7 +42,7 @@ try
     }
 
     File deps2Dir = new File( basedir, "target/dependencies2" );
-    antJar = new File( deps2Dir, "ant-1.7.1.jar" );
+    antJar = new File( deps2Dir, "ant-1.9.14.jar" );
     junitJar = new File( deps2Dir, "junit-4.12.jar" );
 
     if ( ! antJar.exists() || antJar.isDirectory() )