[jbpm-commits] JBoss JBPM SVN: r1758 - jbossbpm/spec/trunk/modules/samples/airticket/war.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Jul 29 17:21:33 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-07-29 17:21:33 -0400 (Tue, 29 Jul 2008)
New Revision: 1758

Modified:
   jbossbpm/spec/trunk/modules/samples/airticket/war/pom.xml
Log:
cleanup pom

Modified: jbossbpm/spec/trunk/modules/samples/airticket/war/pom.xml
===================================================================
--- jbossbpm/spec/trunk/modules/samples/airticket/war/pom.xml	2008-07-29 21:15:14 UTC (rev 1757)
+++ jbossbpm/spec/trunk/modules/samples/airticket/war/pom.xml	2008-07-29 21:21:33 UTC (rev 1758)
@@ -13,26 +13,28 @@
     <version>1.0.0-SNAPSHOT</version>
   </parent>
   
+  <!--  Dependencies -->
+  <dependencies>
+    <dependency>
+      <groupId>com.google.gwt</groupId>
+      <artifactId>gwt-servlet</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.gwt</groupId>
+      <artifactId>gwt-user</artifactId>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  
   <!-- Plugins -->
   <build>
     <plugins>
-			<!--  currently gwt supports java 1.4 (client) source -->
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.4</source>
-          <target>1.4</target>
-        </configuration>
-      </plugin>
-			<!-- All the fantastical settings that GWT needs -->
-      <plugin>
         <groupId>com.totsp.gwt</groupId>
         <artifactId>maven-googlewebtoolkit2-plugin</artifactId>
         <version>2.0-beta18</version>
         <configuration>
-					<!--  gwtVersion can be specified, currently defaults to 1.4.61 if NOT specified -->
-					<!-- <gwtVersion>1.4.61</gwtVersion> -->
           <logLevel>INFO</logLevel>
           <compileTargets>
             <value>org.jboss.bpm.samples.airticket.Application
@@ -44,7 +46,6 @@
             <value>org.jboss.bpm.samples.airticket.Application</value>
           </generatorRootClasses>
           <overwriteGeneratedClasses>true</overwriteGeneratedClasses>
-					<!-- use style OBF for prod -->
           <style>DETAILED</style>
           <generateGettersAndSetters> true</generateGettersAndSetters>
           <noServer>false</noServer>
@@ -53,18 +54,15 @@
         <executions>
           <execution>
             <goals>
-							<!-- autoconfig gwt (download and unzip GWT itself) -->
-							<!-- *note* you can also use manual config, if you already have GWT installed -->
-							<!-- see site docs for details - http://gwt-maven.googlecode.com/svn/docs/maven-googlewebtoolkit2-plugin/setup.html -->
+              <!-- autoconfig gwt (download and unzip GWT itself) -->
+              <!-- *note* you can also use manual config, if you already have GWT installed -->
+              <!-- see site docs for details - http://gwt-maven.googlecode.com/svn/docs/maven-googlewebtoolkit2-plugin/setup.html -->
               <goal>setup</goal>
               <goal>extractGwt</goal>
-
-							<!-- actual work goals -->
+              <!-- actual work goals -->
               <goal>mergewebxml</goal>
               <goal>compile</goal>
               <goal>gwt</goal>
-							<!--  uncomment testGwt to see the testing and code coverage magic -->
-							<!-- <goal>testGwt</goal> -->
             </goals>
           </execution>
         </executions>
@@ -79,37 +77,4 @@
     </plugins>
   </build>
 	
-  <dependencies>
-    <dependency>
-      <groupId>com.google.gwt</groupId>
-      <artifactId>gwt-servlet</artifactId>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>com.google.gwt</groupId>
-      <artifactId>gwt-user</artifactId>
-      <scope>provided</scope>
-    </dependency>
-    <!--
-      coverage patch (used to generate code coverage data for GwtTestCase based tests, when -Dgwt.coverage.enable=true
-    -->
-    <dependency>
-      <groupId>com.google.gwt</groupId>
-      <artifactId>gwtcoverage</artifactId>
-      <version>1.4.61</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.1</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>emma</groupId>
-      <artifactId>emma</artifactId>
-      <version>2.0.5312</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
 </project>
\ No newline at end of file




More information about the jbpm-commits mailing list