You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by sp...@apache.org on 2006/07/06 19:40:11 UTC

svn commit: r419625 - /geronimo/devtools/eclipse-plugin/trunk/assembly/pom.xml

Author: sppatel
Date: Thu Jul  6 10:40:11 2006
New Revision: 419625

URL: http://svn.apache.org/viewvc?rev=419625&view=rev
Log:
assembly plugin should be binded to package phase

Modified:
    geronimo/devtools/eclipse-plugin/trunk/assembly/pom.xml

Modified: geronimo/devtools/eclipse-plugin/trunk/assembly/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/assembly/pom.xml?rev=419625&r1=419624&r2=419625&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/assembly/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/trunk/assembly/pom.xml Thu Jul  6 10:40:11 2006
@@ -33,7 +33,6 @@
   </parent>
   
   <build>
-    <defaultGoal>assembly:assembly</defaultGoal>
     <plugins>
       <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
@@ -44,6 +43,15 @@
             <descriptor>src/main/assembly/updatesite.xml</descriptor>
           </descriptors>
         </configuration>
+        <executions>
+            <execution>
+                <id>assembly</id>
+                <phase>package</phase>
+                <goals>
+                    <goal>assembly</goal>
+                </goals>
+            </execution>
+        </executions>
       </plugin>
     </plugins>
   </build>