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

cstamas pushed a commit to branch MSHARED-988-drop-cp-duplicates
in repository 
https://gitbox.apache.org/repos/asf/maven-common-artifact-filters.git

commit 4aa933c409bdb2e5d779a117c2930d8a9b5678e5
Author: Tamas Cservenak <[email protected]>
AuthorDate: Fri Apr 30 13:21:20 2021 +0200

    [MSHARED-988] Remove CP duplicates
    
    Both org.eclipse.aether (old) and org.apache.maven.resolver
    lie in same package, these two pulled in cause classpath
    conflicyt. Get rid on old, use new one.
---
 pom.xml | 21 +++------------------
 1 file changed, 3 insertions(+), 18 deletions(-)

diff --git a/pom.xml b/pom.xml
index de4d1fa..50f367a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -57,7 +57,7 @@
   <properties>
     <maven.version>3.1.1</maven.version>
     <javaVersion>7</javaVersion>
-    <aether.version>0.9.0.M2</aether.version>
+    <resolver.version>1.4.2</resolver.version>
     <surefire.version>2.22.2</surefire.version>
     <checkstyle.violation.ignore>MethodLength</checkstyle.violation.ignore>
     
<project.build.outputTimestamp>2021-02-14T00:03:59Z</project.build.outputTimestamp>
@@ -120,30 +120,15 @@
       <version>2.6</version>
     </dependency>
     <dependency>
-      <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-api</artifactId>
-      <version>${aether.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-util</artifactId>
-      <version>${aether.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.eclipse.sisu</groupId>
-      <artifactId>org.eclipse.sisu.plexus</artifactId>
-      <version>0.0.0.M5</version>
-    </dependency>
-    <dependency>
       <groupId>org.apache.maven.resolver</groupId>
       <artifactId>maven-resolver-api</artifactId>
-      <version>1.4.2</version>
+      <version>${resolver.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.resolver</groupId>
       <artifactId>maven-resolver-util</artifactId>
-      <version>1.4.2</version>
+      <version>${resolver.version}</version>
       <scope>provided</scope>
     </dependency>
 

Reply via email to