Revision: 10655
Author:   gwt.mirror...@gmail.com
Date:     Fri Sep 16 15:47:37 2011
Log: Integrates r10651 to releases/2.4, DynaTable RF and Mobile Web App samples now use requestfactory-apt

http://code.google.com/p/google-web-toolkit/source/detail?r=10655

Deleted:
 /releases/2.4/samples/mobilewebapp/src/main/java/META-INF
Modified:
 /releases/2.4/samples/dynatablerf/pom.xml
 /releases/2.4/samples/mobilewebapp/pom.xml
/releases/2.4/samples/mobilewebapp/src/main/webapp/WEB-INF/appengine-web.xml
 /releases/2.4/samples/validation/pom.xml

=======================================
--- /releases/2.4/samples/dynatablerf/pom.xml   Tue Sep 13 08:28:51 2011
+++ /releases/2.4/samples/dynatablerf/pom.xml   Fri Sep 16 15:47:37 2011
@@ -1,6 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project 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/maven-v4_0_0.xsd";>
+<project
+   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/maven-v4_0_0.xsd";>

   <modelVersion>4.0.0</modelVersion>
   <groupId>com.google.gwt.sample.dynatablerf</groupId>
@@ -23,23 +25,42 @@
   </properties>

   <dependencies>
-    <!-- Google Web Toolkit (GWT) itself -->
+    <!-- Google Web Toolkit (GWT) -->

     <dependency>
       <groupId>com.google.gwt</groupId>
-      <!-- Could use requestfactory-server instead -->
-      <artifactId>gwt-servlet</artifactId>
+      <artifactId>gwt-user</artifactId>
       <version>${gwtVersion}</version>
-      <scope>runtime</scope>
+      <!-- "provided" so that we don't deploy -->
+      <scope>provided</scope>
     </dependency>
+
+    <!-- For the servlet filter -->
+
     <dependency>
-      <groupId>com.google.gwt</groupId>
-      <artifactId>gwt-user</artifactId>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.5</version>
+    </dependency>
+
+    <!-- RequestFactory server -->
+
+    <dependency>
+      <groupId>com.google.web.bindery</groupId>
+      <artifactId>requestfactory-server</artifactId>
       <version>${gwtVersion}</version>
-      <scope>provided</scope>
     </dependency>

- <!-- GWT RequestFactory will use JSR 303 javax.validation if you let it -->
+    <!-- Generate the decoder needed by RequestFactory Server -->
+    <!-- Doesn't yet work in eclipse. See maven-processor-plugin below.
+    <dependency>
+      <groupId>com.google.web.bindery</groupId>
+      <artifactId>requestfactory-apt</artifactId>
+      <version>${gwtVersion}</version>
+    </dependency>
+-->
+
+    <!-- RequestFactory will use JSR 303 javax.validation if you let it -->
     <dependency>
       <groupId>javax.validation</groupId>
       <artifactId>validation-api</artifactId>
@@ -62,25 +83,8 @@
       </exclusions>
     </dependency>

-    <!-- GWT RequestFactory requires org.json -->
- <!-- TODO: can we declare the json and validation dependencies somewhere for the world to pick up,
-    rather than requiring everyone to know about them? -->
-    <dependency>
-      <groupId>org.json</groupId>
-      <artifactId>json</artifactId>
-      <version>20090211</version>
-    </dependency>
-
-    <!-- for the servlet filter -->
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>servlet-api</artifactId>
-      <version>2.5</version>
-    </dependency>
-
     <!-- Required by Hibernate validator because slf4j-log4j is
-         optional in the hibernate-validator POM
-     -->
+         optional in the hibernate-validator POM  -->
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
@@ -94,10 +98,62 @@
   </dependencies>

   <build>
-    <!-- Generate compiled stuff in the folder used for developing mode -->
+ <!-- Generate compiled stuff in the folder used for development mode --> <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>

     <plugins>
+      <!-- requestfactory-apt runs an annotation processor (APT) to
+           instrument its service interfaces so that
+           RequestFactoryServer can decode client requests. Normally
+           you would just have a dependency on requestfactory-apt
+           with <scope>provided</scope>, but that won't work in
+           eclipse due to m2e bug
+           https://bugs.eclipse.org/bugs/show_bug.cgi?id=335036 -->
+      <plugin>
+        <groupId>org.bsc.maven</groupId>
+        <artifactId>maven-processor-plugin</artifactId>
+        <version>2.0.5</version>
+        <executions>
+          <execution>
+            <id>process</id>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <phase>generate-sources</phase>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>com.google.web.bindery</groupId>
+            <artifactId>requestfactory-apt</artifactId>
+            <version>${gwtVersion}</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+
+      <!-- Google Plugin for Eclipse (GPE) won't see the source
+           generated above by requestfactory-apt unless it is exposed
+           as an additional source dir-->
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <version>1.7</version>
+        <executions>
+          <execution>
+            <id>add-source</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>add-source</goal>
+            </goals>
+            <configuration>
+              <sources>
+ <source>${project.build.directory}/generated-sources/apt</source>
+              </sources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
       <!-- GWT Maven Plugin-->
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
@@ -129,6 +185,7 @@
             </goals>
           </execution>
         </executions>
+
         <!-- Plugin configuration. There are many available options,
              see gwt-maven-plugin documentation at codehaus.org -->
         <configuration>
@@ -144,32 +201,6 @@
         </configuration>
       </plugin>

-      <!-- Run the RequestFactory ValidationTool -->
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>exec-maven-plugin</artifactId>
-        <version>1.2</version>
-        <executions>
-          <execution>
-            <phase>process-classes</phase>
-            <configuration>
-              <id>VerifyRequestFactoryInterfaces</id>
-              <executable>java</executable>
-              <arguments>
-                <argument>-cp</argument>
-                <classpath />
- <argument>com.google.web.bindery.requestfactory.apt.ValidationTool</argument>
-                <argument>${project.build.outputDirectory}</argument>
- <argument>com.google.gwt.sample.dynatablerf.shared.DynaTableRequestFactory</argument>
-              </arguments>
-            </configuration>
-            <goals>
-              <goal>exec</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-
       <!-- Copy static web files before executing gwt:run -->
       <plugin>
         <artifactId>maven-resources-plugin</artifactId>
@@ -192,6 +223,7 @@
         </executions>
       </plugin>

+      <!-- Mark the project for Google Plugin for Eclipse (GPE) -->
       <plugin>
         <artifactId>maven-eclipse-plugin</artifactId>
         <version>2.8</version>
@@ -211,9 +243,9 @@
       </plugin>
     </plugins>

+ <!-- Required by m2e for import into eclipse. No effect on command line builds -->
     <pluginManagement>
       <plugins>
- <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
         <plugin>
           <groupId>org.eclipse.m2e</groupId>
           <artifactId>lifecycle-mapping</artifactId>
@@ -223,11 +255,11 @@
               <pluginExecutions>
                 <pluginExecution>
                   <pluginExecutionFilter>
-                    <groupId>org.codehaus.mojo</groupId>
-                    <artifactId>exec-maven-plugin</artifactId>
-                    <versionRange>[1.2,)</versionRange>
+                    <groupId>org.bsc.maven</groupId>
+                    <artifactId>maven-processor-plugin</artifactId>
+                    <versionRange>[2.0.5,)</versionRange>
                     <goals>
-                      <goal>exec</goal>
+                      <goal>process</goal>
                     </goals>
                   </pluginExecutionFilter>
                   <action>
=======================================
--- /releases/2.4/samples/mobilewebapp/pom.xml  Tue Sep 13 08:28:51 2011
+++ /releases/2.4/samples/mobilewebapp/pom.xml  Fri Sep 16 15:47:37 2011
@@ -35,54 +35,45 @@
   </repositories>

   <dependencies>
+    <!-- Google Web Toolkit (GWT) -->
+
     <dependency>
-      <groupId>javax.inject</groupId>
-      <artifactId>javax.inject</artifactId>
-      <version>1</version>
+      <groupId>com.google.gwt</groupId>
+      <artifactId>gwt-user</artifactId>
+      <version>${gwtVersion}</version>
+      <!-- "provided" so that we don't deploy -->
+      <scope>provided</scope>
     </dependency>

+ <!-- GWT projects do not usually need a dependency on gwt-dev, but MobileWebApp + contains a GWTC Linker (AppCacheLinker) which in turn depends on internals
+         of the GWT compiler. -->
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.8.1</version>
-      <scope>test</scope>
+      <groupId>com.google.gwt</groupId>
+      <artifactId>gwt-dev</artifactId>
+      <version>${gwtVersion}</version>
+      <!-- "provided" so that we don't deploy -->
+      <scope>provided</scope>
     </dependency>

-    <!-- Google Web Toolkit (GWT) itself -->
+    <!-- RequestFactory server -->

     <dependency>
       <groupId>com.google.web.bindery</groupId>
       <artifactId>requestfactory-server</artifactId>
       <version>${gwtVersion}</version>
-      <scope>runtime</scope>
     </dependency>
+
+    <!-- Generate the decoder needed by RequestFactory Server -->
+    <!-- Doesn't yet work in eclipse. See maven-processor-plugin below.
     <dependency>
       <groupId>com.google.web.bindery</groupId>
       <artifactId>requestfactory-apt</artifactId>
       <version>${gwtVersion}</version>
     </dependency>
-    <dependency>
-      <groupId>com.google.gwt</groupId>
-      <artifactId>gwt-user</artifactId>
-      <version>${gwtVersion}</version>
-      <scope>provided</scope>
-    </dependency>
-
- <!-- GWT projects do not usually need a dependency on gwt-dev, but MobileWebApp - contains a GWTC Linker (AppCacheLinker) which in turn depends on internals
-         of the GWT compiler.
-
- This dependency has a scope of "provided" so that it only gets used as a
-         compiler dependecy.
-    -->
-    <dependency>
-      <groupId>com.google.gwt</groupId>
-      <artifactId>gwt-dev</artifactId>
-      <version>${gwtVersion}</version>
-      <scope>provided</scope>
-    </dependency>
-
- <!-- GWT RequestFactory will use JSR 303 javax.validation if you let it -->
+-->
+
+    <!-- RequestFactory will use JSR 303 javax.validation if you let it -->
     <dependency>
       <groupId>org.hibernate</groupId>
       <artifactId>hibernate-validator</artifactId>
@@ -99,7 +90,20 @@
       </exclusions>
     </dependency>

-    <!-- Google App Engine (GAE) itself -->
+    <!-- Required by Hibernate validator because slf4j-log4j is
+         optional in the hibernate-validator POM -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>1.6.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.6.1</version>
+    </dependency>
+
+    <!-- Google App Engine (GAE) -->
     <dependency>
       <groupId>com.google.appengine</groupId>
       <artifactId>appengine-api-1.0-sdk</artifactId>
@@ -148,27 +152,80 @@
       <artifactId>gin</artifactId>
       <version>1.0</version>
     </dependency>
-
-    <!-- Required by Hibernate validator because slf4j-log4j is
-         optional in the hibernate-validator POM
-     -->
+    <!-- Use the JSR 330 injection interfaces-->
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
-      <version>1.6.1</version>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+      <version>1</version>
     </dependency>
+
+    <!-- Unit tests -->
+
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-api</artifactId>
-      <version>1.6.1</version>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.8.1</version>
+      <scope>test</scope>
     </dependency>
   </dependencies>

   <build>
-    <!-- Generate compiled stuff in the folder used for developing mode -->
+ <!-- Generate compiled stuff in the folder used for development mode --> <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>

     <plugins>
+      <!-- requestfactory-apt runs an annotation processor (APT) to
+           instrument its service interfaces so that
+           RequestFactoryServer can decode client requests. Normally
+           you would just have a dependency on requestfactory-apt
+           with <scope>provided</scope>, but that won't work in
+           eclipse due to m2e bug
+           https://bugs.eclipse.org/bugs/show_bug.cgi?id=335036 -->
+      <plugin>
+        <groupId>org.bsc.maven</groupId>
+        <artifactId>maven-processor-plugin</artifactId>
+        <version>2.0.5</version>
+        <executions>
+          <execution>
+            <id>process</id>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <phase>generate-sources</phase>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>com.google.web.bindery</groupId>
+            <artifactId>requestfactory-apt</artifactId>
+            <version>${gwtVersion}</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+
+      <!-- Google Plugin for Eclipse (GPE) won't see the source
+           generated above by requestfactory-apt unless it is exposed
+           as an additional source dir-->
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <version>1.7</version>
+        <executions>
+          <execution>
+            <id>add-source</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>add-source</goal>
+            </goals>
+            <configuration>
+              <sources>
+ <source>${project.build.directory}/generated-sources/apt</source>
+              </sources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
       <!-- GWT Maven Plugin-->
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
@@ -200,6 +257,7 @@
             </goals>
           </execution>
         </executions>
+
         <!-- Plugin configuration. There are many available options,
              see gwt-maven-plugin documentation at codehaus.org -->
         <configuration>
@@ -256,32 +314,6 @@
         </configuration>
       </plugin>

-      <!-- Run the RequestFactory ValidationTool -->
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>exec-maven-plugin</artifactId>
-        <version>1.2</version>
-        <executions>
-          <execution>
-            <phase>process-classes</phase>
-            <configuration>
-              <id>VerifyRequestFactoryInterfaces</id>
-              <executable>java</executable>
-              <arguments>
-                <argument>-cp</argument>
-                <classpath />
- <argument>com.google.web.bindery.requestfactory.apt.ValidationTool</argument>
-                <argument>${project.build.outputDirectory}</argument>
- <argument>com.google.gwt.sample.mobilewebapp.shared.MobileWebAppRequestFactory</argument>
-              </arguments>
-            </configuration>
-            <goals>
-              <goal>exec</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-
       <!-- Copy static web files before executing gwt:run -->
       <plugin>
         <artifactId>maven-resources-plugin</artifactId>
@@ -304,6 +336,7 @@
         </executions>
       </plugin>

+      <!-- Mark the project for Google Plugin for Eclipse (GPE) -->
       <plugin>
         <artifactId>maven-eclipse-plugin</artifactId>
         <version>2.8</version>
@@ -324,9 +357,9 @@
       </plugin>
     </plugins>

+ <!-- Required by m2e for import into eclipse. No effect on command line builds -->
     <pluginManagement>
       <plugins>
- <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
         <plugin>
           <groupId>org.eclipse.m2e</groupId>
           <artifactId>lifecycle-mapping</artifactId>
@@ -335,19 +368,6 @@
             <lifecycleMappingMetadata>
               <pluginExecutions>
                 <pluginExecution>
-                  <pluginExecutionFilter>
-                    <groupId>org.datanucleus</groupId>
-                    <artifactId>maven-datanucleus-plugin</artifactId>
-                    <versionRange>[1.1.4,)</versionRange>
-                    <goals>
-                      <goal>enhance</goal>
-                    </goals>
-                  </pluginExecutionFilter>
-                  <action>
-                    <ignore></ignore>
-                  </action>
-                </pluginExecution>
-                <pluginExecution>
                   <pluginExecutionFilter>
                     <groupId>net.kindleit</groupId>
                     <artifactId>maven-gae-plugin</artifactId>
@@ -360,13 +380,14 @@
                     <execute />
                   </action>
                 </pluginExecution>
+
                 <pluginExecution>
                   <pluginExecutionFilter>
-                    <groupId>org.codehaus.mojo</groupId>
-                    <artifactId>exec-maven-plugin</artifactId>
-                    <versionRange>[1.2,)</versionRange>
+                    <groupId>org.bsc.maven</groupId>
+                    <artifactId>maven-processor-plugin</artifactId>
+                    <versionRange>[2.0.5,)</versionRange>
                     <goals>
-                      <goal>exec</goal>
+                      <goal>process</goal>
                     </goals>
                   </pluginExecutionFilter>
                   <action>
=======================================
--- /releases/2.4/samples/mobilewebapp/src/main/webapp/WEB-INF/appengine-web.xml Wed Jun 1 07:45:02 2011 +++ /releases/2.4/samples/mobilewebapp/src/main/webapp/WEB-INF/appengine-web.xml Fri Sep 16 12:40:49 2011
@@ -15,9 +15,4 @@
     <exclude path="**.gwt.rpc" />
   </static-files>

-  <!-- Configure java.util.logging -->
-  <system-properties>
- <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
-  </system-properties>
-
 </appengine-web-app>
=======================================
--- /releases/2.4/samples/validation/pom.xml    Tue Sep 13 08:28:51 2011
+++ /releases/2.4/samples/validation/pom.xml    Fri Sep 16 12:40:49 2011
@@ -92,7 +92,7 @@
   </dependencies>

   <build>
-    <!-- Generate compiled stuff in the folder used for developing mode -->
+ <!-- Generate compiled stuff in the folder used for development mode --> <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>

     <plugins>

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to