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

reta pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit e54a4073dc7796738d2ef9a622b66d0ed8183bd4
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sat Jan 13 12:00:42 2024 -0500

    Bump org.apache.maven.plugins:maven-plugin-plugin from 3.10.2 to 3.11.0 
(#1642)
    
    Bumps 
[org.apache.maven.plugins:maven-plugin-plugin](https://github.com/apache/maven-plugin-tools)
 from 3.10.2 to 3.11.0.
    - [Release notes](https://github.com/apache/maven-plugin-tools/releases)
    - 
[Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.10.2...maven-plugin-tools-3.11.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-plugin-plugin
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
    (cherry picked from commit 9f9e997406adccda28e1bf7d341db58eb70b7e4c)
---
 maven-plugins/codegen-plugin/pom.xml        |  1 +
 maven-plugins/corba/pom.xml                 | 11 +++++++++++
 maven-plugins/java2wadl-plugin/pom.xml      | 12 ++++++++++++
 maven-plugins/java2ws-plugin/pom.xml        | 11 +++++++++++
 maven-plugins/wadl2java-plugin/pom.xml      |  1 +
 maven-plugins/wsdl-validator-plugin/pom.xml | 12 ++++++++++++
 pom.xml                                     |  2 +-
 7 files changed, 49 insertions(+), 1 deletion(-)

diff --git a/maven-plugins/codegen-plugin/pom.xml 
b/maven-plugins/codegen-plugin/pom.xml
index 3fc0940f40..81d776f6f7 100644
--- a/maven-plugins/codegen-plugin/pom.xml
+++ b/maven-plugins/codegen-plugin/pom.xml
@@ -134,6 +134,7 @@
                 <configuration>
                     <!-- see https://issues.apache.org/jira/browse/MNG-5346 -->
                     
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
+                    <goalPrefix>cxf-codegen</goalPrefix>
                 </configuration>
                 <executions>
                     <execution>
diff --git a/maven-plugins/corba/pom.xml b/maven-plugins/corba/pom.xml
index 02be4e2c21..8737d5b05c 100644
--- a/maven-plugins/corba/pom.xml
+++ b/maven-plugins/corba/pom.xml
@@ -72,4 +72,15 @@
             <version>${project.version}</version>
         </dependency>
     </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <configuration>
+                    <goalPrefix>cxf-corbatools</goalPrefix>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>
diff --git a/maven-plugins/java2wadl-plugin/pom.xml 
b/maven-plugins/java2wadl-plugin/pom.xml
index e6f52d5d58..41a7d4557a 100644
--- a/maven-plugins/java2wadl-plugin/pom.xml
+++ b/maven-plugins/java2wadl-plugin/pom.xml
@@ -131,6 +131,18 @@
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <configuration>
+                    <goalPrefix>cxf-java2wadl</goalPrefix>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
     <profiles>
         <profile>
             <id>setup.eclipse</id>
diff --git a/maven-plugins/java2ws-plugin/pom.xml 
b/maven-plugins/java2ws-plugin/pom.xml
index 3ebc1c116d..714d66933b 100644
--- a/maven-plugins/java2ws-plugin/pom.xml
+++ b/maven-plugins/java2ws-plugin/pom.xml
@@ -80,4 +80,15 @@
             <version>${project.version}</version>
         </dependency>
     </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <configuration>
+                    <goalPrefix>cxf-java2ws</goalPrefix>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>
diff --git a/maven-plugins/wadl2java-plugin/pom.xml 
b/maven-plugins/wadl2java-plugin/pom.xml
index 97d01ce97b..dc51540cd4 100644
--- a/maven-plugins/wadl2java-plugin/pom.xml
+++ b/maven-plugins/wadl2java-plugin/pom.xml
@@ -113,6 +113,7 @@
                 <configuration>
                     <!-- see http://jira.codehaus.org/browse/MNG-5346 -->
                     
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
+                    <goalPrefix>cxf-wadl2java</goalPrefix>
                 </configuration>
                 <executions>
                     <execution>
diff --git a/maven-plugins/wsdl-validator-plugin/pom.xml 
b/maven-plugins/wsdl-validator-plugin/pom.xml
index 699b576293..d112876eb3 100644
--- a/maven-plugins/wsdl-validator-plugin/pom.xml
+++ b/maven-plugins/wsdl-validator-plugin/pom.xml
@@ -59,4 +59,16 @@
             <version>${cxf.plexus-utils.version}</version>
         </dependency>
     </dependencies>
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <configuration>
+                    <goalPrefix>cxf-wsdl-validator</goalPrefix>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>
diff --git a/pom.xml b/pom.xml
index ff72e1ca4f..ae1d21c65d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -555,7 +555,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-plugin-plugin</artifactId>
-                    <version>3.10.2</version>
+                    <version>3.11.0</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>

Reply via email to