You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by de...@apache.org on 2019/01/24 08:45:22 UTC

[cxf] branch master updated: update maven-invoker-plugin version, now set in parent

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

deki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new b38280a  update maven-invoker-plugin version, now set in parent
b38280a is described below

commit b38280a8c758abc184f65457713f07213e7ed409
Author: Dennis Kieselhorst <ma...@dekies.de>
AuthorDate: Thu Jan 24 09:45:04 2019 +0100

    update maven-invoker-plugin version, now set in parent
---
 maven-plugins/codegen-plugin/pom.xml   | 2 --
 maven-plugins/wadl2java-plugin/pom.xml | 3 +--
 parent/pom.xml                         | 5 +++++
 systests/wsdl_maven/codegen/pom.xml    | 1 -
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/maven-plugins/codegen-plugin/pom.xml b/maven-plugins/codegen-plugin/pom.xml
index 13c50a4..f6eb093 100644
--- a/maven-plugins/codegen-plugin/pom.xml
+++ b/maven-plugins/codegen-plugin/pom.xml
@@ -176,11 +176,9 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-invoker-plugin</artifactId>
-                <version>3.0.1</version>
                 <executions>
                     <execution>
                         <id>test-integration</id>
-                        <phase>integration-test</phase>
                         <goals>
                             <goal>integration-test</goal>
                             <goal>verify</goal>
diff --git a/maven-plugins/wadl2java-plugin/pom.xml b/maven-plugins/wadl2java-plugin/pom.xml
index 082d21a..21f4323 100644
--- a/maven-plugins/wadl2java-plugin/pom.xml
+++ b/maven-plugins/wadl2java-plugin/pom.xml
@@ -134,13 +134,12 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-invoker-plugin</artifactId>
-                <version>3.0.0</version>
                 <executions>
                     <execution>
                         <id>test-integration</id>
-                        <phase>integration-test</phase>
                         <goals>
                             <goal>integration-test</goal>
+                            <goal>verify</goal>
                         </goals>
                         <configuration>
                             <settingsFile>src/it/settings.xml</settingsFile>
diff --git a/parent/pom.xml b/parent/pom.xml
index 4ee9d41..1083114 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -564,6 +564,11 @@
                     <artifactId>maven-processor-plugin</artifactId>
                     <version>3.3.3</version> 
                 </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-invoker-plugin</artifactId>
+                    <version>3.2.0</version>
+                </plugin>
             </plugins>
         </pluginManagement>
         <plugins>
diff --git a/systests/wsdl_maven/codegen/pom.xml b/systests/wsdl_maven/codegen/pom.xml
index e6061e3..f5d1c3d 100644
--- a/systests/wsdl_maven/codegen/pom.xml
+++ b/systests/wsdl_maven/codegen/pom.xml
@@ -111,7 +111,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-invoker-plugin</artifactId>
-                <version>3.0.0</version>
                 <configuration>
                     <projectsDirectory>src/it</projectsDirectory>
                     <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>