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

veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git


The following commit(s) were added to refs/heads/master by this push:
     new cf5553d36 Correctly declare all direct plugin dependencies
cf5553d36 is described below

commit cf5553d36ef5e74217e8dcf1e58c01dbe930862f
Author: Andreas Veithen <[email protected]>
AuthorDate: Tue May 24 00:36:25 2022 +0000

    Correctly declare all direct plugin dependencies
---
 buildutils/axiom-weaver-maven-plugin/pom.xml |  6 ++++++
 buildutils/buildutils-maven-plugin/pom.xml   | 29 +++++++++++++++++++---------
 buildutils/pom.xml                           | 10 ++++++++++
 3 files changed, 36 insertions(+), 9 deletions(-)

diff --git a/buildutils/axiom-weaver-maven-plugin/pom.xml 
b/buildutils/axiom-weaver-maven-plugin/pom.xml
index 05ac75919..20dd55519 100644
--- a/buildutils/axiom-weaver-maven-plugin/pom.xml
+++ b/buildutils/axiom-weaver-maven-plugin/pom.xml
@@ -47,6 +47,11 @@
             <artifactId>maven-core</artifactId>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-model</artifactId>
+            <scope>provided</scope>
+        </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>axiom-weaver</artifactId>
@@ -62,6 +67,7 @@
             <groupId>org.slf4j</groupId>
             <artifactId>jcl-over-slf4j</artifactId>
             <version>1.7.36</version>
+            <scope>runtime</scope>
             <exclusions>
                 <exclusion>
                     <groupId>org.slf4j</groupId>
diff --git a/buildutils/buildutils-maven-plugin/pom.xml 
b/buildutils/buildutils-maven-plugin/pom.xml
index 28ce64d51..be8dc8c91 100644
--- a/buildutils/buildutils-maven-plugin/pom.xml
+++ b/buildutils/buildutils-maven-plugin/pom.xml
@@ -31,15 +31,6 @@
 
     <url>http://ws.apache.org/axiom/</url>
 
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.codehaus.plexus</groupId>
-                <artifactId>plexus-utils</artifactId>
-                <version>3.4.1</version>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
     <dependencies>
         <dependency>
             <groupId>org.apache.maven.plugin-tools</groupId>
@@ -56,6 +47,16 @@
             <artifactId>maven-core</artifactId>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-artifact</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-model</artifactId>
+            <scope>provided</scope>
+        </dependency>
         <dependency>
             <groupId>org.apache.maven.shared</groupId>
             <artifactId>maven-artifact-transfer</artifactId>
@@ -65,5 +66,15 @@
             <groupId>org.ow2.asm</groupId>
             <artifactId>asm</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.maven.shared</groupId>
+            <artifactId>maven-shared-utils</artifactId>
+            <version>3.3.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-utils</artifactId>
+            <version>3.4.1</version>
+        </dependency>
     </dependencies>
 </project>
diff --git a/buildutils/pom.xml b/buildutils/pom.xml
index 973dba2ef..efe438534 100644
--- a/buildutils/pom.xml
+++ b/buildutils/pom.xml
@@ -55,6 +55,16 @@
                 <artifactId>maven-core</artifactId>
                 <version>${maven.version}</version>
             </dependency>
+            <dependency>
+                <groupId>org.apache.maven</groupId>
+                <artifactId>maven-artifact</artifactId>
+                <version>${maven.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.maven</groupId>
+                <artifactId>maven-model</artifactId>
+                <version>${maven.version}</version>
+            </dependency>
             <dependency>
                 <groupId>org.apache.maven.plugin-tools</groupId>
                 <artifactId>maven-plugin-annotations</artifactId>

Reply via email to