You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2008/10/08 15:53:33 UTC

svn commit: r702877 - /directory/studio/trunk/updatesite/pom.xml

Author: pamarcelot
Date: Wed Oct  8 06:53:32 2008
New Revision: 702877

URL: http://svn.apache.org/viewvc?rev=702877&view=rev
Log:
Set up the generation of the nightly build package in the 'CI' profile.

Modified:
    directory/studio/trunk/updatesite/pom.xml

Modified: directory/studio/trunk/updatesite/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/updatesite/pom.xml?rev=702877&r1=702876&r2=702877&view=diff
==============================================================================
--- directory/studio/trunk/updatesite/pom.xml (original)
+++ directory/studio/trunk/updatesite/pom.xml Wed Oct  8 06:53:32 2008
@@ -45,6 +45,25 @@
       <build>
         <plugins>
           <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>2.2-beta-1</version>
+            <executions>
+              <execution>
+                <id>nightly</id>
+                <phase>package</phase>
+                <configuration>
+                  <finalName>studio-plugin</finalName>
+                  <descriptors>
+                    <descriptor>src/main/assembly/nightlybuild.xml</descriptor>
+                  </descriptors>
+                </configuration>
+                <goals>
+                  <goal>attached</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
             <artifactId>maven-antrun-plugin</artifactId>
             <executions>
               <execution>
@@ -284,19 +303,6 @@
               <goal>attached</goal>
             </goals>
           </execution>
-          <execution>
-            <id>nightly</id>
-            <phase>package</phase>
-            <configuration>
-              <finalName>studio-plugin</finalName>
-              <descriptors>
-                <descriptor>src/main/assembly/nightlybuild.xml</descriptor>
-              </descriptors>
-            </configuration>
-            <goals>
-              <goal>attached</goal>
-            </goals>
-          </execution>
         </executions>
       </plugin>
     </plugins>