[overlord-commits] Overlord SVN: r923 - bpm-console/trunk/gui/war.

overlord-commits at lists.jboss.org overlord-commits at lists.jboss.org
Fri Jan 22 03:28:03 EST 2010


Author: heiko.braun at jboss.com
Date: 2010-01-22 03:28:03 -0500 (Fri, 22 Jan 2010)
New Revision: 923

Modified:
   bpm-console/trunk/gui/war/pom.xml
Log:
Fix inclusion of console.config.js

Modified: bpm-console/trunk/gui/war/pom.xml
===================================================================
--- bpm-console/trunk/gui/war/pom.xml	2010-01-22 08:27:08 UTC (rev 922)
+++ bpm-console/trunk/gui/war/pom.xml	2010-01-22 08:28:03 UTC (rev 923)
@@ -225,6 +225,7 @@
                                 -->
                                 <delete dir="war/WEB-INF/classes"/>
                                 <delete dir="war/WEB-INF/lib"/>
+                                <delete file="war/WEB-INF/jboss-web.xml"/>
                                 <delete dir="war/app"/>
                                 <delete dir="target"/>
 
@@ -235,14 +236,14 @@
                         </goals>
                     </execution>
                     <execution>
-                        <phase>process-classes</phase>
+                        <phase>prepare-package</phase>
                         <configuration>
                             <tasks>
                                 <!--
                                 https://jira.jboss.org/jira/browse/BPMC-5
                                 Tomcat caches console.config.js
                                 -->
-                                <touch file="${project.build.outputDirectory}/org/jboss/bpm/console/public/console.config.js"/>
+                                <!--touch file="war/app/console.config.js"/-->
                             </tasks>
                         </configuration>
                         <goals>
@@ -300,7 +301,7 @@
                         <executions>
                             <execution>
                                 <id>unpack-profile-jbpm</id>
-                                <phase>process-resources</phase>
+                                <phase>prepare-package</phase>
                                 <goals>
                                     <goal>unpack</goal>
                                 </goals>
@@ -312,7 +313,8 @@
                                             <version>${version}</version>
                                             <type>jar</type>
                                             <overWrite>true</overWrite>
-                                            <outputDirectory>war/app</outputDirectory>                                            
+                                            <outputDirectory>war/app</outputDirectory>
+                                            <includes>**/*</includes>
                                         </artifactItem>
                                     </artifactItems>
                                 </configuration>
@@ -366,7 +368,7 @@
 
                             <execution>
                                 <id>unpack-profile-drools</id>
-                                <phase>process-resources</phase>
+                                <phase>prepare-package</phase>
                                 <goals>
                                     <goal>unpack</goal>
                                 </goals>
@@ -378,7 +380,8 @@
                                             <version>${version}</version>
                                             <type>jar</type>
                                             <overWrite>true</overWrite>
-                                            <outputDirectory>target/classes</outputDirectory>
+                                            <outputDirectory>war/app</outputDirectory>
+                                            <includes>**/*</includes>
                                         </artifactItem>
                                     </artifactItems>
                                 </configuration>
@@ -431,7 +434,7 @@
 
                             <execution>
                                 <id>unpack-profile-riftsaw</id>
-                                <phase>process-resources</phase>
+                                <phase>prepare-package</phase>
                                 <goals>
                                     <goal>unpack</goal>
                                 </goals>
@@ -443,7 +446,8 @@
                                             <version>${version}</version>
                                             <type>jar</type>
                                             <overWrite>true</overWrite>
-                                            <outputDirectory>target/classes</outputDirectory>
+                                            <outputDirectory>war/app</outputDirectory>
+                                            <includes>**/*</includes>
                                         </artifactItem>
                                     </artifactItems>
                                 </configuration>
@@ -464,47 +468,26 @@
             </build>
         </profile>
 
-        <!--
-         =======================================================
-          OS Switch used for GWT SDK selection
-         =======================================================
-        -->
-
-        <profile>
-            <id>gwt-dev-windows</id>
-            <properties>
-                <platform>windows</platform>
-            </properties>
-            <activation>
-                <activeByDefault>true</activeByDefault>
-                <os>
-                    <family>windows</family>
-                </os>
-            </activation>
-        </profile>
-        <profile>
-            <id>gwt-dev-mac</id>
-            <properties>
-                <platform>mac</platform>
-            </properties>
-            <activation>
-                <activeByDefault>false</activeByDefault>
-                <os>
-                    <family>mac</family>
-                </os>
-            </activation>
-        </profile>
-        <profile>
-            <id>gwt-dev-linux</id>
-            <properties>
-                <platform>linux</platform>
-            </properties>
-            <activation>
-                <activeByDefault>false</activeByDefault>
-                <os>
-                    <name>linux</name>
-                </os>
-            </activation>
-        </profile>
     </profiles>
+
+    <reporting>
+        <excludeDefaults>true</excludeDefaults>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>gwt-maven-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>soyc</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+                <configuration>
+
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
 </project>



More information about the overlord-commits mailing list