You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/07/01 13:38:34 UTC

[maven-plugin-tools] 01/01: tighten the dependency tree

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

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

commit 5e27a24b5b956e939e1b57fcc60a214ae2610809
Author: Elliotte Rusty Harold <el...@ibiblio.org>
AuthorDate: Wed Jul 1 09:38:17 2020 -0400

    tighten the dependency tree
---
 maven-plugin-tools-annotations/pom.xml |  6 ++++++
 maven-plugin-tools-api/pom.xml         | 13 +++++++++++--
 pom.xml                                | 16 +++++++---------
 3 files changed, 24 insertions(+), 11 deletions(-)

diff --git a/maven-plugin-tools-annotations/pom.xml b/maven-plugin-tools-annotations/pom.xml
index 9ccde1f..a2a987c 100644
--- a/maven-plugin-tools-annotations/pom.xml
+++ b/maven-plugin-tools-annotations/pom.xml
@@ -94,6 +94,12 @@
       <artifactId>mockito-core</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.easytesting</groupId>
+      <artifactId>fest-assert</artifactId>
+      <version>1.4</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>
diff --git a/maven-plugin-tools-api/pom.xml b/maven-plugin-tools-api/pom.xml
index ff472f0..b90404e 100644
--- a/maven-plugin-tools-api/pom.xml
+++ b/maven-plugin-tools-api/pom.xml
@@ -51,12 +51,21 @@
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-artifact</artifactId>
     </dependency>
-
-    <!-- plexus -->
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-settings</artifactId>
+    </dependency>
+    
+     <!-- plexus -->
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.sonatype.sisu</groupId>
+      <artifactId>sisu-inject-plexus</artifactId>
+      <version>1.4.2</version>
+    </dependency>
 
     <!-- test -->
     <dependency>
diff --git a/pom.xml b/pom.xml
index 6b27186..3434178 100644
--- a/pom.xml
+++ b/pom.xml
@@ -164,7 +164,12 @@
         <artifactId>maven-artifact</artifactId>
         <version>${mavenVersion}</version>
       </dependency>
-
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-settings</artifactId>
+        <version>${mavenVersion}</version>
+      </dependency>
+      
       <!-- plexus -->
       <dependency>
         <groupId>org.codehaus.plexus</groupId>
@@ -235,23 +240,16 @@
         <version>2.28.2</version>
         <scope>test</scope>
       </dependency>
-      
     </dependencies>
   </dependencyManagement>
+  
   <dependencies>
-    <!-- misc -->
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>4.13</version>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>org.easytesting</groupId>
-      <artifactId>fest-assert</artifactId>
-      <version>1.4</version>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 
   <build>