[jboss-cvs] JBossAS SVN: r64629 - projects/javaee/trunk/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 16 14:29:00 EDT 2007


Author: pgier
Date: 2007-08-16 14:29:00 -0400 (Thu, 16 Aug 2007)
New Revision: 64629

Modified:
   projects/javaee/trunk/build/pom.xml
Log:
Changed the assembly plugin to use the goal "attached" this will allow the combined jar to be automatically deployed.

Modified: projects/javaee/trunk/build/pom.xml
===================================================================
--- projects/javaee/trunk/build/pom.xml	2007-08-16 17:06:19 UTC (rev 64628)
+++ projects/javaee/trunk/build/pom.xml	2007-08-16 18:29:00 UTC (rev 64629)
@@ -74,20 +74,22 @@
         <inherited>true</inherited>
         <executions>
           <execution>
-              <goals>
-                <goal>jar</goal>
-              </goals>
+            <goals>
+              <goal>jar</goal>
+            </goals>
           </execution>
         </executions>
       </plugin>
 
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.2-beta-1</version>
         <executions>
           <execution>
             <phase>package</phase>
             <goals>
-              <goal>assembly</goal>
+              <goal>attached</goal>
             </goals>
           </execution>
         </executions>




More information about the jboss-cvs-commits mailing list