[jboss-cvs] JBossAS SVN: r109760 - branches/JBPAPP_5_1/thirdparty.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 7 13:08:51 EST 2010


Author: pgier
Date: 2010-12-07 13:08:51 -0500 (Tue, 07 Dec 2010)
New Revision: 109760

Added:
   branches/JBPAPP_5_1/thirdparty/thirdparty-zip-assembly.xml
Modified:
   branches/JBPAPP_5_1/thirdparty/pom.xml
Log:
[JBPAPP-5526] Adding assembly configuration to create a thirdparty zip

Modified: branches/JBPAPP_5_1/thirdparty/pom.xml
===================================================================
--- branches/JBPAPP_5_1/thirdparty/pom.xml	2010-12-07 17:51:16 UTC (rev 109759)
+++ branches/JBPAPP_5_1/thirdparty/pom.xml	2010-12-07 18:08:51 UTC (rev 109760)
@@ -2186,6 +2186,37 @@
         </plugins>
       </build>
     </profile>
+    <profile>
+      <id>create-thirdparty-zip</id>
+      <activation>
+        <property>
+          <name>!skip-create-thirdparty-zip</name>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>2.2-beta-4</version>
+            <executions>
+              <execution>
+                <id>thirdparty-zip</id>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <phase>generate-resources</phase>
+                <configuration>
+                  <descriptors>
+                    <descriptor>thirdparty-zip-assembly.xml</descriptor>
+                  </descriptors>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
   </profiles>
   
 </project>

Added: branches/JBPAPP_5_1/thirdparty/thirdparty-zip-assembly.xml
===================================================================
--- branches/JBPAPP_5_1/thirdparty/thirdparty-zip-assembly.xml	                        (rev 0)
+++ branches/JBPAPP_5_1/thirdparty/thirdparty-zip-assembly.xml	2010-12-07 18:08:51 UTC (rev 109760)
@@ -0,0 +1,16 @@
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" 
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+  <id>thirdparty</id>
+  <formats>
+    <format>zip</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <excludes>
+        <exclude>target/**</exclude>
+        <exclude>.project</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+</assembly>


Property changes on: branches/JBPAPP_5_1/thirdparty/thirdparty-zip-assembly.xml
___________________________________________________________________
Name: svn:keywords
   + Author Date Id Revision
Name: svn:eol-style
   + native



More information about the jboss-cvs-commits mailing list