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 2021/05/17 19:48:35 UTC

[maven-antrun-plugin] branch master updated (a6dc5df -> 54b4dba)

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

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


    from a6dc5df  Bump junit-jupiter-engine from 5.7.0 to 5.7.2
     new de141d4  fix: pom.xml to reduce vulnerabilities
     new 54b4dba  (doc) misc versions sync

The 2 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.


Summary of changes:
 Jenkinsfile                              |  2 +-
 pom.xml                                  | 27 ++++++++++++++++++++++-----
 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/custom-task-test/pom.xml          |  2 +-
 src/it/env-var-test/pom.xml              |  2 +-
 src/it/filesets-test/pom.xml             |  4 ++--
 src/it/filesets-test/verify.bsh          |  8 ++++----
 src/it/local-repo-prop-test/pom.xml      |  2 +-
 src/it/properties-test/pom.xml           |  2 +-
 src/site/apt/examples/customTasks.apt.vm |  2 +-
 13 files changed, 38 insertions(+), 21 deletions(-)

[maven-antrun-plugin] 02/02: (doc) misc versions sync

Posted by sl...@apache.org.
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

commit 54b4dbabcb1e5d7b99ff8aff79b147c4ff923978
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon May 17 21:21:12 2021 +0200

    (doc) misc versions sync
---
 Jenkinsfile                              |  2 +-
 pom.xml                                  | 23 ++++++++++++++++++++---
 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/custom-task-test/pom.xml          |  2 +-
 src/it/env-var-test/pom.xml              |  2 +-
 src/it/filesets-test/pom.xml             |  4 ++--
 src/it/filesets-test/verify.bsh          |  8 ++++----
 src/it/local-repo-prop-test/pom.xml      |  2 +-
 src/it/properties-test/pom.xml           |  2 +-
 src/site/apt/examples/customTasks.apt.vm |  2 +-
 13 files changed, 36 insertions(+), 19 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 9481f86..e9f05f7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpPlgnBuild(jdk:['8','11','14','15'])
+asfMavenTlpPlgnBuild()
diff --git a/pom.xml b/pom.xml
index ed76fa2..00b54e8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -64,6 +64,8 @@ under the License.
   <properties>
     <mavenVersion>3.1.1</mavenVersion>
     <javaVersion>8</javaVersion>
+    <surefire.version>2.22.2</surefire.version>
+    <mavenPluginToolsVersion>3.6.1</mavenPluginToolsVersion>
     <project.build.outputTimestamp>2020-04-12T07:51:40Z</project.build.outputTimestamp>
   </properties>
 
@@ -108,13 +110,13 @@ under the License.
     <dependency>
       <groupId>org.xmlunit</groupId>
       <artifactId>xmlunit-core</artifactId>
-      <version>2.7.0</version>
+      <version>2.8.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.xmlunit</groupId>
       <artifactId>xmlunit-matchers</artifactId>
-      <version>2.7.0</version>
+      <version>2.8.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -134,9 +136,24 @@ under the License.
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-enforcer-plugin</artifactId>
+          <version>3.0.0-M3</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-javadoc-plugin</artifactId>
           <version>3.2.0</version>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-plugin-plugin</artifactId>
+          <version>${mavenPluginToolsVersion}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-site-plugin</artifactId>
+          <version>3.9.1</version>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
@@ -152,7 +169,7 @@ under the License.
       <plugin>
         <groupId>org.codehaus.modello</groupId>
         <artifactId>modello-maven-plugin</artifactId>
-        <version>1.11</version>
+        <version>1.10.0</version><!-- 1.11 error: There are more than one class as root element for this version -->
         <configuration>
           <models>
             <model>src/main/mdo/antrun.mdo</model>
diff --git a/src/it/MANTRUN-208/pom.xml b/src/it/MANTRUN-208/pom.xml
index 298b53d..84e24eb 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.7.0</version>
+            <version>5.7.2</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 3bb4c5b..bd2c76d 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.7.0</version>
+      <version>5.7.2</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 a2e5cbc..dea103f 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.7.0</version>
+      <version>5.7.2</version>
     </dependency>
   </dependencies>
 
diff --git a/src/it/classpath-test-scope-test/pom.xml b/src/it/classpath-test-scope-test/pom.xml
index 434261e..bc325dc 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.7.0</version>
+      <version>5.7.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/src/it/custom-task-test/pom.xml b/src/it/custom-task-test/pom.xml
index 32d390f..c4b96ab 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.10.8</version>
+      <version>1.10.10</version>
     </dependency>
   </dependencies>
 
diff --git a/src/it/env-var-test/pom.xml b/src/it/env-var-test/pom.xml
index a41aaf6..4bb0544 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.7.0</version>
+      <version>5.7.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/src/it/filesets-test/pom.xml b/src/it/filesets-test/pom.xml
index c26aa4e..7a0b188 100644
--- a/src/it/filesets-test/pom.xml
+++ b/src/it/filesets-test/pom.xml
@@ -116,12 +116,12 @@ under the License.
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.10.8</version>
+      <version>1.10.10</version>
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>5.7.0</version>
+      <version>5.7.2</version>
     </dependency>
   </dependencies>
 
diff --git a/src/it/filesets-test/verify.bsh b/src/it/filesets-test/verify.bsh
index 235ba8f..a267bbb 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.8.jar" );
-    File junitJar = new File( depsDir, "junit-jupiter-engine-5.7.0.jar" );
+    File antJar = new File( depsDir, "ant-1.10.10.jar" );
+    File junitJar = new File( depsDir, "junit-jupiter-engine-5.7.2.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.8.jar" );
-    junitJar = new File( deps2Dir, "junit-jupiter-api-5.7.0.jar" );
+    antJar = new File( deps2Dir, "ant-1.10.10.jar" );
+    junitJar = new File( deps2Dir, "junit-jupiter-api-5.7.2.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 25bf55a..464dd3f 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.7.0</version>
+      <version>5.7.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/src/it/properties-test/pom.xml b/src/it/properties-test/pom.xml
index 74bd3a8..8994392 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.7.0</version>
+      <version>5.7.2</version>
     </dependency>
   </dependencies>
 
diff --git a/src/site/apt/examples/customTasks.apt.vm b/src/site/apt/examples/customTasks.apt.vm
index ae1b464..9158b40 100644
--- a/src/site/apt/examples/customTasks.apt.vm
+++ b/src/site/apt/examples/customTasks.apt.vm
@@ -71,7 +71,7 @@ Using tasks not included in Ant's default jar
           <dependency>
             <groupId>org.apache.ant</groupId>
             <artifactId>ant-commons-net</artifactId>
-            <version>1.10.7</version>
+            <version>1.10.10</version>
           </dependency>
         </dependencies>
       </plugin>

[maven-antrun-plugin] 01/02: fix: pom.xml to reduce vulnerabilities

Posted by sl...@apache.org.
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

commit de141d49345e62bc26b7e99c43ffbea1866cb47c
Author: snyk-bot <sn...@snyk.io>
AuthorDate: Sat Oct 24 04:08:46 2020 +0000

    fix: pom.xml to reduce vulnerabilities
    
    The following vulnerabilities are fixed with an upgrade:
    - https://snyk.io/vuln/SNYK-JAVA-COMGOOGLEGUAVA-1015415
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index d948588..ed76fa2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@ under the License.
     <artifactId>maven-plugins</artifactId>
     <groupId>org.apache.maven.plugins</groupId>
     <version>34</version>
-    <relativePath />
+    <relativePath/>
   </parent>
 
   <artifactId>maven-antrun-plugin</artifactId>
@@ -62,7 +62,7 @@ under the License.
   </distributionManagement>
 
   <properties>
-    <mavenVersion>3.1.0</mavenVersion>
+    <mavenVersion>3.1.1</mavenVersion>
     <javaVersion>8</javaVersion>
     <project.build.outputTimestamp>2020-04-12T07:51:40Z</project.build.outputTimestamp>
   </properties>