You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by eo...@apache.org on 2019/05/15 08:31:25 UTC

[maven-enforcer] branch MENFORCER-311 created (now 9c0ea9c)

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

eolivelli pushed a change to branch MENFORCER-311
in repository https://gitbox.apache.org/repos/asf/maven-enforcer.git.


      at 9c0ea9c  MENFORCER-331 Maven-enforcer-rules to use maven-resolver-util.

This branch includes the following new commits:

     new 9c0ea9c  MENFORCER-331 Maven-enforcer-rules to use maven-resolver-util.

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



[maven-enforcer] 01/01: MENFORCER-331 Maven-enforcer-rules to use maven-resolver-util.

Posted by eo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

eolivelli pushed a commit to branch MENFORCER-311
in repository https://gitbox.apache.org/repos/asf/maven-enforcer.git

commit 9c0ea9c70e139e778698a4f7f66cceae3ea19e5a
Author: suztomo <su...@google.com>
AuthorDate: Mon Mar 18 00:06:34 2019 -0400

    MENFORCER-331 Maven-enforcer-rules to use maven-resolver-util.
    
    Excluding aether-util and adding maven-resolver-util.
---
 enforcer-rules/pom.xml | 10 ++++++++++
 pom.xml                |  5 +++++
 2 files changed, 15 insertions(+)

diff --git a/enforcer-rules/pom.xml b/enforcer-rules/pom.xml
index abfd146..2e11107 100644
--- a/enforcer-rules/pom.xml
+++ b/enforcer-rules/pom.xml
@@ -88,6 +88,16 @@
     <dependency>
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-dependency-tree</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.eclipse.aether</groupId>
+          <artifactId>aether-util</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.resolver</groupId>
+      <artifactId>maven-resolver-util</artifactId>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
diff --git a/pom.xml b/pom.xml
index 12a8068..98362fa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -151,6 +151,11 @@
         <version>2.2</version>
       </dependency>
       <dependency>
+        <groupId>org.apache.maven.resolver</groupId>
+        <artifactId>maven-resolver-util</artifactId>
+        <version>1.3.3</version>
+      </dependency>
+      <dependency>
         <groupId>org.assertj</groupId>
         <artifactId>assertj-core</artifactId>
         <version>1.7.1</version>