Skip to content

Commit

Permalink
[MSHARED-988] Remove CP duplicates
Browse files Browse the repository at this point in the history
    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.
  • Loading branch information
cstamas committed May 3, 2021
1 parent 73cea9b commit 7c83ef4
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -125,26 +125,16 @@
<artifactId>commons-io</artifactId>
<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.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>

Expand Down

0 comments on commit 7c83ef4

Please sign in to comment.