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 2020/01/24 10:11:23 UTC

[maven-doxia-book-maven-plugin] branch master updated: Fix maven-plugin-plugin configuration

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

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-doxia-book-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 847110c  Fix maven-plugin-plugin configuration
847110c is described below

commit 847110cfe9a7276577032a1e3ab12fc520fb34da
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Jan 24 11:11:14 2020 +0100

    Fix maven-plugin-plugin configuration
---
 pom.xml | 30 +++---------------------------
 1 file changed, 3 insertions(+), 27 deletions(-)

diff --git a/pom.xml b/pom.xml
index 14ab6e5..80defac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -132,31 +132,17 @@ under the License.
   </dependencies>
 
   <build>
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-plugin-plugin</artifactId>
-          <version>${pluginPluginVersion}</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
-        <configuration>
-          <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
-        </configuration>
         <executions>
           <execution>
-            <id>mojo-descriptor</id>
-            <goals>
-              <goal>descriptor</goal>
-            </goals>
+            <id>default-descriptor</id>
+            <phase>process-classes</phase>
           </execution>
           <execution>
-            <id>generated-helpmojo</id>
+            <id>generate-helpmojo</id>
             <goals>
               <goal>helpmojo</goal>
             </goals>
@@ -165,14 +151,4 @@ under the License.
       </plugin>
     </plugins>
   </build>
-
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-plugin-plugin</artifactId>
-        <version>${pluginPluginVersion}</version>
-      </plugin>
-    </plugins>
-  </reporting>
 </project>