You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by se...@apache.org on 2013/06/25 02:49:09 UTC

svn commit: r1496311 - /maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml

Author: sebb
Date: Tue Jun 25 00:49:08 2013
New Revision: 1496311

URL: http://svn.apache.org/r1496311
Log:
Removed too much; re-instate

Modified:
    maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml

Modified: maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml?rev=1496311&r1=1496310&r2=1496311&view=diff
==============================================================================
--- maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml (original)
+++ maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml Tue Jun 25 00:49:08 2013
@@ -122,6 +122,35 @@ The Apache Maven Digest Mojo provides di
           <tarLongFileMode>gnu</tarLongFileMode>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <configuration>
+          <!-- see http://jira.codehaus.org/browse/MNG-5346 -->
+          <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
+        </configuration>
+        <executions>
+          <execution>
+            <id>generate-descriptor</id>
+            <goals>
+              <goal>descriptor</goal>
+            </goals>
+          </execution>
+          <!-- The generated Mojo does not handle annotations properly,
+               and does not show any "User property" names.
+               Since this is misleading, it is better to drop the goal
+               The Maven Help plugin does show property names, so we create
+               our own Help Mojo that extends it.
+               Unfortunately, it seems we cannot override the parent here
+          <execution>
+            <id>generated-helpmojo</id>
+            <goals>
+              <goal>helpmojo</goal>
+            </goals>
+          </execution>
+          -->
+        </executions>
+      </plugin>
     </plugins>
  </build>
 </project>