You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2018/12/15 10:33:34 UTC

[maven-common-artifact-filters] 01/01: [MSHARED-683] Use maven-resolver instead of (eclipse-)aether / Require Java 7

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

rfscholte pushed a commit to branch MSHARED-683
in repository https://gitbox.apache.org/repos/asf/maven-common-artifact-filters.git

commit 6b81a5d7f30dea47c90b96c897520e8cb5502df8
Author: rfscholte <rf...@apache.org>
AuthorDate: Sat Dec 15 11:33:28 2018 +0100

    [MSHARED-683] Use maven-resolver instead of (eclipse-)aether / Require Java 7
---
 pom.xml | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index 76746ae..103397c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -56,6 +56,7 @@
 
   <properties>
     <maven.version>3.0</maven.version>
+    <javaVersion>7</javaVersion>
   </properties>
 
   <dependencies>
@@ -99,15 +100,15 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-api</artifactId>
-      <version>0.9.0.M2</version>
+      <groupId>org.apache.maven.resolver</groupId>
+      <artifactId>maven-resolver-api</artifactId>
+      <version>1.3.1</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-util</artifactId>
-      <version>0.9.0.M2</version>
+      <groupId>org.apache.maven.resolver</groupId>
+      <artifactId>maven-resolver-util</artifactId>
+      <version>1.3.1</version>
       <scope>provided</scope>
     </dependency>