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/04/16 19:24:19 UTC

[maven-antrun-plugin] branch MANTRUN-225 created (now 682aae1)

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

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


      at 682aae1  [MANTRUN-225] Upgrade Apache Ant to 1.10.7

This branch includes the following new commits:

     new 682aae1  [MANTRUN-225] Upgrade Apache Ant to 1.10.7

The 1 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-antrun-plugin] 01/01: [MANTRUN-225] Upgrade Apache Ant to 1.10.7

Posted by sl...@apache.org.
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 682aae1cf569158f30382044f326fd73c02315b6
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 858db01..21964d0 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>