You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/05/23 20:38:21 UTC

[maven-plugin-tools] 01/01: [MPLUGIN-399] Upgrade project dependencies after JDK 1.8

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

sjaranowski pushed a commit to branch MPLUGIN-399
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git

commit f4866f26045a0e74062ebdc17107cb73c1bcaa11
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Mon May 23 22:37:55 2022 +0200

    [MPLUGIN-399] Upgrade project dependencies after JDK 1.8
    
    - plexus-archiver from 3.6.0 to 4.2.7
    - assertj-core from 2.9.1 to 3.22.0
    - antVersion from 1.9.16 to 1.10.12
---
 maven-plugin-tools-annotations/pom.xml |  2 --
 maven-script/maven-script-ant/pom.xml  |  1 -
 pom.xml                                | 11 +++++++++--
 3 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/maven-plugin-tools-annotations/pom.xml b/maven-plugin-tools-annotations/pom.xml
index c9290345..f7b1eb5d 100644
--- a/maven-plugin-tools-annotations/pom.xml
+++ b/maven-plugin-tools-annotations/pom.xml
@@ -74,7 +74,6 @@
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-archiver</artifactId>
-        <version>4.2.5</version><!-- Java 7 -->
     </dependency>
         
     <dependency>
@@ -106,7 +105,6 @@
     <dependency>
       <groupId>org.assertj</groupId>
       <artifactId>assertj-core</artifactId>
-      <version>2.9.1</version><!-- Java 7 -->
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/maven-script/maven-script-ant/pom.xml b/maven-script/maven-script-ant/pom.xml
index 2b02e49a..3d49f076 100644
--- a/maven-script/maven-script-ant/pom.xml
+++ b/maven-script/maven-script-ant/pom.xml
@@ -60,7 +60,6 @@ under the License.
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-archiver</artifactId>
-        <version>4.2.5</version><!-- Java 7 -->
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
diff --git a/pom.xml b/pom.xml
index bb565355..6c2a2997 100644
--- a/pom.xml
+++ b/pom.xml
@@ -94,7 +94,7 @@
     <javaVersion>8</javaVersion>
     <pluginTestingHarnessVersion>3.3.0</pluginTestingHarnessVersion>
     <mavenVersion>3.2.5</mavenVersion>
-    <antVersion>1.9.16</antVersion>
+    <antVersion>1.10.12</antVersion>
     <maven.site.path>plugin-tools-archives/plugin-tools-LATEST</maven.site.path>
     <asmVersion>9.3</asmVersion>
     <project.build.outputTimestamp>2022-01-10T23:05:38Z</project.build.outputTimestamp>
@@ -183,7 +183,7 @@
       <dependency>
         <groupId>org.codehaus.plexus</groupId>
         <artifactId>plexus-archiver</artifactId>
-        <version>3.6.0</version>
+        <version>4.2.7</version>
       </dependency>
       <dependency>
         <groupId>org.codehaus.plexus</groupId>
@@ -225,12 +225,19 @@
         <version>${asmVersion}</version>
       </dependency>
 
+      <!-- testing -->
       <dependency>
         <groupId>org.apache.maven.plugin-testing</groupId>
         <artifactId>maven-plugin-testing-harness</artifactId>
         <version>${pluginTestingHarnessVersion}</version>
         <scope>test</scope>
       </dependency>
+      <dependency>
+        <groupId>org.assertj</groupId>
+        <artifactId>assertj-core</artifactId>
+        <version>3.22.0</version>
+        <scope>test</scope>
+      </dependency>
       <dependency>
         <groupId>org.mockito</groupId>
         <artifactId>mockito-core</artifactId>