You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2010/04/26 22:35:32 UTC

svn commit: r938225 - /maven/archetype/trunk/maven-archetype-bundles/maven-archetype-plugin/src/main/resources/archetype-resources/pom.xml

Author: hboutemy
Date: Mon Apr 26 20:35:32 2010
New Revision: 938225

URL: http://svn.apache.org/viewvc?rev=938225&view=rev
Log:
added help generation configuration

Modified:
    maven/archetype/trunk/maven-archetype-bundles/maven-archetype-plugin/src/main/resources/archetype-resources/pom.xml

Modified: maven/archetype/trunk/maven-archetype-bundles/maven-archetype-plugin/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/maven-archetype-bundles/maven-archetype-plugin/src/main/resources/archetype-resources/pom.xml?rev=938225&r1=938224&r2=938225&view=diff
==============================================================================
--- maven/archetype/trunk/maven-archetype-bundles/maven-archetype-plugin/src/main/resources/archetype-resources/pom.xml (original)
+++ maven/archetype/trunk/maven-archetype-bundles/maven-archetype-plugin/src/main/resources/archetype-resources/pom.xml Mon Apr 26 20:35:32 2010
@@ -7,7 +7,7 @@
   <version>${version}</version>
   <packaging>maven-plugin</packaging>
 
-  <name>${artifactId} Maven Mojo</name>
+  <name>${artifactId} Maven Plugin</name>
   <url>http://maven.apache.org</url>
 
   <properties>
@@ -27,4 +27,42 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>2.5.1</version>
+        <configuration>
+          <goalPrefix>${artifactId}</goalPrefix>
+        </configuration>
+        <executions>
+          <execution>
+            <id>generated-helpmojo</id>
+            <goals>
+              <goal>helpmojo</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>2.5.1</version><!-- same version as build plugin -->
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
 </project>