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/21 11:14:02 UTC

[maven-archetype] branch master updated: Explicitly declare dependencies (#54)

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-archetype.git


The following commit(s) were added to refs/heads/master by this push:
     new 9672cb1  Explicitly declare dependencies (#54)
9672cb1 is described below

commit 9672cb1cd80a39ea08d378014ec61fa533ca81b7
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Tue Jul 21 11:13:54 2020 +0000

    Explicitly declare dependencies (#54)
    
    * declare dependencies explicitly
---
 archetype-common/pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/archetype-common/pom.xml b/archetype-common/pom.xml
index 1db8766..7dcb9af 100644
--- a/archetype-common/pom.xml
+++ b/archetype-common/pom.xml
@@ -105,6 +105,12 @@
       <artifactId>maven-invoker</artifactId>
     </dependency>
     <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-aether-provider</artifactId>
+      <version>3.0</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-artifact-transfer</artifactId>
     </dependency>
@@ -117,6 +123,15 @@
       <artifactId>commons-io</artifactId>
     </dependency>
     <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.sonatype.aether</groupId>
+      <artifactId>aether-impl</artifactId>
+      <version>1.7</version>
+    </dependency>
+    <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-velocity</artifactId>
     </dependency>