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 2020/05/03 20:40:27 UTC

[maven-antrun-plugin] 01/01: [MANTRUN-225] Upgrade Apache Ant to 1.10.7

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

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

commit 7d24b497e3c2cda19dc36d0533b044f7e8067610
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Thu Apr 16 21:23:56 2020 +0200

    [MANTRUN-225] Upgrade Apache Ant to 1.10.7
---
 pom.xml                                  | 2 +-
 src/it/custom-task-test/pom.xml          | 2 +-
 src/it/filesets-test/pom.xml             | 2 +-
 src/it/filesets-test/verify.bsh          | 4 ++--
 src/site/apt/examples/customTasks.apt.vm | 7 +------
 5 files changed, 6 insertions(+), 11 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5a0eb9a..9bf141e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -96,7 +96,7 @@ under the License.
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.9.14</version>
+      <version>1.10.7</version>
     </dependency>
 
     <dependency>
diff --git a/src/it/custom-task-test/pom.xml b/src/it/custom-task-test/pom.xml
index f4b99a8..2f3e358 100644
--- a/src/it/custom-task-test/pom.xml
+++ b/src/it/custom-task-test/pom.xml
@@ -34,7 +34,7 @@ under the License.
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.9.14</version>
+      <version>1.10.7</version>
     </dependency>
   </dependencies>
 
diff --git a/src/it/filesets-test/pom.xml b/src/it/filesets-test/pom.xml
index a56444c..4bc594c 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.9.14</version>
+      <version>1.10.7</version>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
diff --git a/src/it/filesets-test/verify.bsh b/src/it/filesets-test/verify.bsh
index 068e3ff..75aaddf 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.9.14.jar" );
+    File antJar = new File( depsDir, "ant-1.10.7.jar" );
     File junitJar = new File( depsDir, "junit-jupiter-engine-5.6.2.jar" );
 
     if ( ! antJar.exists() || antJar.isDirectory() )
@@ -42,7 +42,7 @@ try
     }
 
     File deps2Dir = new File( basedir, "target/dependencies2" );
-    antJar = new File( deps2Dir, "ant-1.9.14.jar" );
+    antJar = new File( deps2Dir, "ant-1.10.7.jar" );
     junitJar = new File( deps2Dir, "junit-jupiter-api-5.6.2.jar" );
 
     if ( ! antJar.exists() || antJar.isDirectory() )
diff --git a/src/site/apt/examples/customTasks.apt.vm b/src/site/apt/examples/customTasks.apt.vm
index ca07ff9..ae1b464 100644
--- a/src/site/apt/examples/customTasks.apt.vm
+++ b/src/site/apt/examples/customTasks.apt.vm
@@ -69,14 +69,9 @@ Using tasks not included in Ant's default jar
         </executions>
         <dependencies>
           <dependency>
-            <groupId>commons-net</groupId>
-            <artifactId>commons-net</artifactId>
-            <version>2.2</version>
-          </dependency>
-          <dependency>
             <groupId>org.apache.ant</groupId>
             <artifactId>ant-commons-net</artifactId>
-            <version>1.9.14</version>
+            <version>1.10.7</version>
           </dependency>
         </dependencies>
       </plugin>