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 16:03:03 UTC

[maven-shared-io] branch master updated: declare used dependencies (#9)

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

elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shared-io.git


The following commit(s) were added to refs/heads/master by this push:
     new 5164550  declare used dependencies (#9)
5164550 is described below

commit 51645508a8eb14a1be9639cd50a95b22230a82af
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Wed Jul 1 12:02:47 2020 -0400

    declare used dependencies (#9)
---
 pom.xml | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 717c2ee..5e5ab5d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -72,11 +72,16 @@
     <!-- Maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-artifact</artifactId>
+      <artifactId>maven-core</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
+      <artifactId>maven-artifact</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>    
+    <dependency>
+      <groupId>org.apache.maven</groupId>
       <artifactId>maven-compat</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
@@ -95,6 +100,11 @@
       <artifactId>maven-shared-utils</artifactId>
       <version>3.2.1</version>
     </dependency>
+    <dependency>
+      <groupId>org.sonatype.sisu</groupId>
+      <artifactId>sisu-inject-plexus</artifactId>
+      <version>1.4.2</version>
+    </dependency>
 
     <dependency>
       <groupId>org.easymock</groupId>