aboutsummaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorRay Cromwell <cromwellian@gmail.com>2008-10-09 20:09:40 +0000
committerRay Cromwell <cromwellian@gmail.com>2008-10-09 20:09:40 +0000
commit44a7177fb990140b3c37316d462107035517c1b9 (patch)
tree751379199ba961b138223afa6c37d456db0f7391 /samples
parent27bccdbe899d4dae481ae3bafddacc3ccddba309 (diff)
downloadgwtquery-44a7177fb990140b3c37316d462107035517c1b9.tar.gz
gwtquery-44a7177fb990140b3c37316d462107035517c1b9.zip
Updated to GWT 1.5.2
Diffstat (limited to 'samples')
-rw-r--r--samples/pom.xml39
1 files changed, 30 insertions, 9 deletions
diff --git a/samples/pom.xml b/samples/pom.xml
index 9fe806c9..ffab1e68 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -3,7 +3,7 @@
<parent>
<groupId>gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
- <version>0.3-SNAPSHOT</version>
+ <version>0.31-SNAPSHOT</version>
</parent>
<name>GwtQuery Samples</name>
@@ -21,8 +21,37 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>unpack</id>
+ <phase>compile</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>com.google.gwt</groupId>
+ <artifactId>gwt-dev</artifactId>
+ <version>${gwtversion}</version>
+ <classifier>${gwtplatform}-libs</classifier>
+ <type>zip</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>
+ ${settings.localRepository}/com/google/gwt/gwt-dev/${gwtversion}
+ </outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>com.totsp.gwt</groupId>
<artifactId>maven-googlewebtoolkit2-plugin</artifactId>
+ <version>2.0-beta24</version>
<configuration>
<gwtVersion>${gwtversion}</gwtVersion>
<logLevel>WARN</logLevel>
@@ -44,14 +73,6 @@
</configuration>
<executions>
<execution>
- <id>setupgwt</id>
- <phase>validate</phase>
- <goals>
- <goal>setup</goal>
- <goal>extractGwt</goal>
- </goals>
- </execution>
- <execution>
<id>compilegwt</id>
<goals>
<goal>compile</goal>