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

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

commit 931f8e69e83a4a96c876d6edeb194f90569ad7dd
Author: Guillaume Nodet <[email protected]>
AuthorDate: Tue Oct 25 00:25:32 2022 +0200

    Use the plexus-utils from maven
---
 maven-plugin-plugin/pom.xml                                    | 2 +-
 maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml | 2 +-
 maven-plugin-plugin/src/it/java-basic-annotations/pom.xml      | 2 +-
 maven-plugin-report-plugin/pom.xml                             | 2 +-
 maven-plugin-report-plugin/src/it/fix-maven-since-3.x/pom.xml  | 2 +-
 maven-plugin-tools-annotations/pom.xml                         | 2 +-
 maven-plugin-tools-api/pom.xml                                 | 2 +-
 maven-plugin-tools-generators/pom.xml                          | 2 +-
 maven-plugin-tools-java/pom.xml                                | 2 +-
 maven-script/maven-plugin-tools-ant/pom.xml                    | 2 +-
 maven-script/maven-plugin-tools-model/pom.xml                  | 2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/maven-plugin-plugin/pom.xml b/maven-plugin-plugin/pom.xml
index 750852ed..b6b222fb 100644
--- a/maven-plugin-plugin/pom.xml
+++ b/maven-plugin-plugin/pom.xml
@@ -136,7 +136,7 @@
 
     <!-- plexus -->
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
     <dependency>
diff --git a/maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml 
b/maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml
index b00ab7d5..ec477fa1 100644
--- a/maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml
+++ b/maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml
@@ -58,7 +58,7 @@ under the License.
       <scope>compile</scope>
     </dependency>
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
       <version>@plexusUtilsVersion@</version>
     </dependency>
diff --git a/maven-plugin-plugin/src/it/java-basic-annotations/pom.xml 
b/maven-plugin-plugin/src/it/java-basic-annotations/pom.xml
index 19ee2b15..81f204fd 100644
--- a/maven-plugin-plugin/src/it/java-basic-annotations/pom.xml
+++ b/maven-plugin-plugin/src/it/java-basic-annotations/pom.xml
@@ -52,7 +52,7 @@ under the License.
       <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
       <version>@plexusUtilsVersion@</version>
     </dependency>
diff --git a/maven-plugin-report-plugin/pom.xml 
b/maven-plugin-report-plugin/pom.xml
index 08dd74ec..f07bfa6c 100644
--- a/maven-plugin-report-plugin/pom.xml
+++ b/maven-plugin-report-plugin/pom.xml
@@ -100,7 +100,7 @@
 
         <!-- plexus -->
         <dependency>
-            <groupId>org.codehaus.plexus</groupId>
+            <groupId>org.apache.maven</groupId>
             <artifactId>plexus-utils</artifactId>
         </dependency>
 
diff --git a/maven-plugin-report-plugin/src/it/fix-maven-since-3.x/pom.xml 
b/maven-plugin-report-plugin/src/it/fix-maven-since-3.x/pom.xml
index 47ea4d51..2dd09879 100644
--- a/maven-plugin-report-plugin/src/it/fix-maven-since-3.x/pom.xml
+++ b/maven-plugin-report-plugin/src/it/fix-maven-since-3.x/pom.xml
@@ -41,7 +41,7 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
       <version>@plexusUtilsVersion@</version>
     </dependency>
diff --git a/maven-plugin-tools-annotations/pom.xml 
b/maven-plugin-tools-annotations/pom.xml
index 0019be03..7d4a2130 100644
--- a/maven-plugin-tools-annotations/pom.xml
+++ b/maven-plugin-tools-annotations/pom.xml
@@ -61,7 +61,7 @@
       <artifactId>slf4j-api</artifactId>
     </dependency>
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
     <dependency>
diff --git a/maven-plugin-tools-api/pom.xml b/maven-plugin-tools-api/pom.xml
index dd7073df..e272f1bd 100644
--- a/maven-plugin-tools-api/pom.xml
+++ b/maven-plugin-tools-api/pom.xml
@@ -57,7 +57,7 @@
     </dependency>
     <!-- plexus -->
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
     <!-- for retrieving package-list or element-list of existing javadoc sites 
-->
diff --git a/maven-plugin-tools-generators/pom.xml 
b/maven-plugin-tools-generators/pom.xml
index 61ffd71b..7a6a2774 100644
--- a/maven-plugin-tools-generators/pom.xml
+++ b/maven-plugin-tools-generators/pom.xml
@@ -56,7 +56,7 @@
 
     <!-- plexus -->
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
     <dependency>
diff --git a/maven-plugin-tools-java/pom.xml b/maven-plugin-tools-java/pom.xml
index e9018d41..4481d9ec 100644
--- a/maven-plugin-tools-java/pom.xml
+++ b/maven-plugin-tools-java/pom.xml
@@ -52,7 +52,7 @@
 
     <!-- plexus -->
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
     <dependency>
diff --git a/maven-script/maven-plugin-tools-ant/pom.xml 
b/maven-script/maven-plugin-tools-ant/pom.xml
index b52a47e0..99221874 100644
--- a/maven-script/maven-plugin-tools-ant/pom.xml
+++ b/maven-script/maven-plugin-tools-ant/pom.xml
@@ -51,7 +51,7 @@
     
     <!-- plexus -->
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
     <dependency>
diff --git a/maven-script/maven-plugin-tools-model/pom.xml 
b/maven-script/maven-plugin-tools-model/pom.xml
index 66e754b8..d0226464 100644
--- a/maven-script/maven-plugin-tools-model/pom.xml
+++ b/maven-script/maven-plugin-tools-model/pom.xml
@@ -41,7 +41,7 @@
     </dependency>
     <!-- plexus -->
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
+      <groupId>org.apache.maven</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
     <dependency>

Reply via email to