[jbpm-commits] JBoss JBPM SVN: r3278 - in projects/gwt-console/trunk/server: scripts and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Dec 9 04:39:37 EST 2008


Author: heiko.braun at jboss.com
Date: 2008-12-09 04:39:37 -0500 (Tue, 09 Dec 2008)
New Revision: 3278

Added:
   projects/gwt-console/trunk/server/scripts/
   projects/gwt-console/trunk/server/scripts/assembly-config.xml
Modified:
   projects/gwt-console/trunk/server/pom.xml
Log:
Assemble report.zip for distribution

Modified: projects/gwt-console/trunk/server/pom.xml
===================================================================
--- projects/gwt-console/trunk/server/pom.xml	2008-12-09 07:58:33 UTC (rev 3277)
+++ projects/gwt-console/trunk/server/pom.xml	2008-12-09 09:39:37 UTC (rev 3278)
@@ -52,7 +52,7 @@
          <artifactId>bpm-spec-api</artifactId>
          <version>${jboss.bpm.spec.version}</version>
          <scope>provided</scope>
-      </dependency>      
+      </dependency>
 
       <!-- GWT related -->
       <dependency>
@@ -120,6 +120,26 @@
                <target>1.5</target>
             </configuration>
          </plugin>
+
+         <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+               <execution>
+                  <phase>package</phase>
+                  <goals>
+                     <goal>single</goal>
+                  </goals>
+                  <configuration>
+                     <finalName>${project.build.finalName}</finalName>
+                     <appendAssemblyId>true</appendAssemblyId>
+                     <descriptors>
+                        <descriptor>scripts/assembly-config.xml</descriptor>
+                     </descriptors>
+                  </configuration>
+               </execution>
+            </executions>
+         </plugin>
+
       </plugins>
       <finalName>gwt-console-server</finalName>
    </build>

Added: projects/gwt-console/trunk/server/scripts/assembly-config.xml
===================================================================
--- projects/gwt-console/trunk/server/scripts/assembly-config.xml	                        (rev 0)
+++ projects/gwt-console/trunk/server/scripts/assembly-config.xml	2008-12-09 09:39:37 UTC (rev 3278)
@@ -0,0 +1,17 @@
+<assembly xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd">
+  <id>report</id>
+  <formats>
+    <format>zip</format>
+  </formats>
+  <includeBaseDirectory>false</includeBaseDirectory>
+  <fileSets>
+    <fileSet>
+      <directory>${project.build.outputDirectory}</directory>
+      <outputDirectory>/</outputDirectory>
+      <includes>
+        <include>*.rpt*</include>        
+      </includes>
+    </fileSet>
+  </fileSets>
+</assembly>
\ No newline at end of file




More information about the jbpm-commits mailing list