aboutsummaryrefslogtreecommitdiffstats
path: root/archetype
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2010-11-21 11:27:16 +0000
committerManolo Carrasco <manolo@apache.org>2010-11-21 11:27:16 +0000
commitfc8dfc5c5da78d69da360e2213cc1f4f2af7710c (patch)
treea6e1c741173556e49aa9fbf2705529503671a5a4 /archetype
parentbf0751a12b2add413323a350fce397ef5c4202be (diff)
downloadgwtquery-fc8dfc5c5da78d69da360e2213cc1f4f2af7710c.tar.gz
gwtquery-fc8dfc5c5da78d69da360e2213cc1f4f2af7710c.zip
updating to gwt 2.1.0 and changing gwtquery repo to use sonatype snapshots
Diffstat (limited to 'archetype')
-rw-r--r--archetype/src/main/resources/archetype-resources/pom.xml13
-rw-r--r--archetype/src/main/resources/archetype-resources/src/test/java/__artifactId__/client/__projectName__Test.java2
2 files changed, 9 insertions, 6 deletions
diff --git a/archetype/src/main/resources/archetype-resources/pom.xml b/archetype/src/main/resources/archetype-resources/pom.xml
index dbec1ee7..b062e8f1 100644
--- a/archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetype/src/main/resources/archetype-resources/pom.xml
@@ -12,7 +12,7 @@
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
<gQueryVersion>1.0.0-SNAPSHOT</gQueryVersion>
- <gwtversion>2.0.4</gwtversion>
+ <gwtversion>2.1.0</gwtversion>
</properties>
<repositories>
@@ -21,8 +21,10 @@
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
- <id>site</id>
- <url>http://gwtquery.googlecode.com/svn/mavenrepo</url>
+ <id>sonatype</id>
+ <url>http://oss.sonatype.org/content/repositories/snapshots</url>
+ <snapshots><enabled>true</enabled></snapshots>
+ <releases><enabled>false</enabled></releases>
</repository>
<repository>
<id>m.g.o</id>
@@ -53,7 +55,7 @@
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtversion}</version>
- <scope>provided</scope>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
@@ -62,7 +64,7 @@
<scope>runtime</scope>
</dependency>
<dependency>
- <groupId>com.google.gwt</groupId>
+ <groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery</artifactId>
<version>${gQueryVersion}</version>
<scope>provided</scope>
@@ -73,6 +75,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
+ <version>${gwtversion}</version>
<configuration>
<logLevel>${gwt.loglevel}</logLevel>
<style>${gwt.outputstyle}</style>
diff --git a/archetype/src/main/resources/archetype-resources/src/test/java/__artifactId__/client/__projectName__Test.java b/archetype/src/main/resources/archetype-resources/src/test/java/__artifactId__/client/__projectName__Test.java
index 7ba9d631..ef0a7fef 100644
--- a/archetype/src/main/resources/archetype-resources/src/test/java/__artifactId__/client/__projectName__Test.java
+++ b/archetype/src/main/resources/archetype-resources/src/test/java/__artifactId__/client/__projectName__Test.java
@@ -33,7 +33,7 @@ public class ${projectName}Test extends GWTTestCase {
a.onModuleLoad();
// delay the test
- delayTestFinish(Speed.DEFAULT * 3);
+ delayTestFinish(Speed.DEFAULT * 5);
// trigger mouse over event
final double size1 = fontSize(g);