diff options
author | Ray Cromwell <cromwellian@gmail.com> | 2009-07-27 09:01:20 +0000 |
---|---|---|
committer | Ray Cromwell <cromwellian@gmail.com> | 2009-07-27 09:01:20 +0000 |
commit | 31d1c7cae609b4adb17cfee60d112474576dd054 (patch) | |
tree | e4abb3d1e852eb4ebcaa46cc42cc7a1979a60f9e /samples/pom.xml | |
parent | 42ed8c73d5ab5bb8ba585b9f026c19108c83fe37 (diff) | |
download | gwtquery-31d1c7cae609b4adb17cfee60d112474576dd054.tar.gz gwtquery-31d1c7cae609b4adb17cfee60d112474576dd054.zip |
Update to codehaus gwt-maven-plugin. Update to GWT 1.7.0. Update module files to properly include Plugins.gwt.xml module. Disabled tests for now (JUnitShell not launching properly from new plugin). Fixed unbound deferred bindings.
Diffstat (limited to 'samples/pom.xml')
-rw-r--r-- | samples/pom.xml | 70 |
1 files changed, 18 insertions, 52 deletions
diff --git a/samples/pom.xml b/samples/pom.xml index 9b343be3..e0c94656 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -29,77 +29,43 @@ <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> + <groupId>org.codehaus.mojo</groupId> + <artifactId>gwt-maven-plugin</artifactId> + <version>1.1</version> <configuration> <logLevel>${gwt.loglevel}</logLevel> <style>${gwt.outputstyle}</style> <gwtVersion>${gwtversion}</gwtVersion> - - <logLevel>WARN</logLevel> - <runTarget> - gwtquery.samples.GwtQueryDemo/index.html - </runTarget> - <compileTargets> - <compileTarget> + <modules> + <module> gwtquery.samples.GwtQueryDemo - </compileTarget> - <compileTarget> + </module> + <module> gwtquery.samples.GwtQueryBench - </compileTarget> - <compileTarget> + </module> + <module> gwtquery.samples.GwtQuerySample - </compileTarget> - <compileTarget> + </module> + <module> gwtquery.samples.GwtQueryPlugin - </compileTarget> - <compileTarget> + </module> + <module> gwtquery.samples.GwtQueryWidgets - </compileTarget> - <compileTarget> + </module> + <module> gwtquery.samples.GwtQueryEffects - </compileTarget> - - </compileTargets> + </module> + </modules> </configuration> <executions> <execution> - <id>compilegwt</id> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> + </plugins> </build> |