Revision: 9630
Author: [email protected]
Date: Wed Jan 26 13:12:30 2011
Log: Fix bad gwt-servlet dep problem described in
http://code.google.com/p/google-web-toolkit/issues/detail?id=5918
http://code.google.com/p/google-web-toolkit/source/detail?r=9630
Modified:
/trunk/samples/expenses/pom.xml
/trunk/tools/scripts/maven_script.sh
=======================================
--- /trunk/samples/expenses/pom.xml Wed Jan 26 09:24:30 2011
+++ /trunk/samples/expenses/pom.xml Wed Jan 26 13:12:30 2011
@@ -623,7 +623,12 @@
<artifactId>gwt-dev</artifactId>
<version>${gwt.version}</version>
</dependency>
- </dependencies>
+ <dependency>
+ <groupId>com.google.gwt</groupId>
+ <artifactId>gwt-servlet</artifactId>
+ <version>${gwt.version}</version>
+ </dependency>
+ </dependencies>
<configuration>
<logLevel>INFO</logLevel>
<style>PRETTY</style>
=======================================
--- /trunk/tools/scripts/maven_script.sh Fri Jan 21 13:52:51 2011
+++ /trunk/tools/scripts/maven_script.sh Wed Jan 26 13:12:30 2011
@@ -15,7 +15,7 @@
# the License.
MAVEN_REPO=${MAVEN_REPO:-"~/.m2/repository"}
-GWT_VERSION=${GWT_VERSION:-"2.2-M1"}
+GWT_VERSION=${GWT_VERSION:-"2.2-rc1"}
GWT_DIR=${GWT_DIR:-"build/lib"}
echo "Pushing GWT jars from ${GWT_DIR} into local maven repo with version
${GWT_VERSION}."
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors