You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2019/04/05 17:15:59 UTC

[maven-gpg-plugin] branch INFRA-18014 updated: maven-invoker-plugin should not use plugin management

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

rfscholte pushed a commit to branch INFRA-18014
in repository https://gitbox.apache.org/repos/asf/maven-gpg-plugin.git


The following commit(s) were added to refs/heads/INFRA-18014 by this push:
     new b733c9a  maven-invoker-plugin should not use plugin management
b733c9a is described below

commit b733c9a5fc20cf0063dc00326c655c29c1fb64c0
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Apr 5 19:15:49 2019 +0200

    maven-invoker-plugin should not use plugin management
---
 pom.xml | 40 +++++++++++++++++++---------------------
 1 file changed, 19 insertions(+), 21 deletions(-)

diff --git a/pom.xml b/pom.xml
index f5f2411..cd58609 100644
--- a/pom.xml
+++ b/pom.xml
@@ -129,27 +129,25 @@ under the License.
     <profile>
       <id>run-its</id>
       <build>
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-invoker-plugin</artifactId>
-              <configuration>
-                <settingsFile>src/it/settings.xml</settingsFile>
-                <pomIncludes>
-                  <pomInclude>*</pomInclude>
-                </pomIncludes>
-                <goals>
-                  <goal>clean</goal>
-                  <goal>install</goal>
-                </goals>
-                <properties>
-                  <gpg.homedir>${project.build.testOutputDirectory}/gnupg</gpg.homedir>
-                </properties>
-              </configuration>
-            </plugin>
-          </plugins>
-        </pluginManagement>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-invoker-plugin</artifactId>
+            <configuration>
+              <settingsFile>src/it/settings.xml</settingsFile>
+              <pomIncludes>
+                <pomInclude>*</pomInclude>
+              </pomIncludes>
+              <goals>
+                <goal>clean</goal>
+                <goal>install</goal>
+              </goals>
+              <properties>
+                <gpg.homedir>${project.build.testOutputDirectory}/gnupg</gpg.homedir>
+              </properties>
+            </configuration>
+          </plugin>
+        </plugins>
       </build>
     </profile>
   </profiles>