You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by al...@apache.org on 2016/05/30 20:20:57 UTC

svn commit: r1746190 - /aries/trunk/blueprint/blueprint-maven-plugin/pom.xml

Author: alien11689
Date: Mon May 30 20:20:56 2016
New Revision: 1746190

URL: http://svn.apache.org/viewvc?rev=1746190&view=rev
Log:
[ARIES-1555] Add maven-plugin-plugin executions

Modified:
    aries/trunk/blueprint/blueprint-maven-plugin/pom.xml

Modified: aries/trunk/blueprint/blueprint-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/blueprint/blueprint-maven-plugin/pom.xml?rev=1746190&r1=1746189&r2=1746190&view=diff
==============================================================================
--- aries/trunk/blueprint/blueprint-maven-plugin/pom.xml (original)
+++ aries/trunk/blueprint/blueprint-maven-plugin/pom.xml Mon May 30 20:20:56 2016
@@ -60,6 +60,22 @@
             <plugin>
                 <artifactId>maven-plugin-plugin</artifactId>
                 <version>3.4</version>
+                <executions>
+                    <execution>
+                        <id>default-descriptor</id>
+                        <goals>
+                            <goal>descriptor</goal>
+                        </goals>
+                        <phase>process-classes</phase>
+                    </execution>
+                    <execution>
+                        <id>help-descriptor</id>
+                        <goals>
+                            <goal>helpmojo</goal>
+                        </goals>
+                        <phase>process-classes</phase>
+                    </execution>
+                </executions>
             </plugin>
 
         </plugins>