diff options
-rw-r--r-- | devtest/pom.xml | 2 | ||||
-rw-r--r-- | gwtquery-core/pom.xml | 2 | ||||
-rw-r--r-- | samples/pom.xml | 5 | ||||
-rw-r--r-- | samples/src/main/java/gwtquery/samples/GwtQueryImageZoom.gwt.xml | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/devtest/pom.xml b/devtest/pom.xml index 14604e62..ed2b6ce1 100644 --- a/devtest/pom.xml +++ b/devtest/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>com.googlecode.gwtquery</groupId> <artifactId>gwtquery-project</artifactId> - <version>1.1.0-SNAPSHOT</version> + <version>1.1.1-SNAPSHOT</version> </parent> <artifactId>devtest</artifactId> diff --git a/gwtquery-core/pom.xml b/gwtquery-core/pom.xml index 2d5e8e2d..d59a714c 100644 --- a/gwtquery-core/pom.xml +++ b/gwtquery-core/pom.xml @@ -3,7 +3,7 @@ <parent> <groupId>com.googlecode.gwtquery</groupId> <artifactId>gwtquery-project</artifactId> - <version>1.1.0</version> + <version>1.1.1-SNAPSHOT</version> </parent> <artifactId>gwtquery</artifactId> diff --git a/samples/pom.xml b/samples/pom.xml index 0af9e8ae..5ef09c91 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -3,7 +3,7 @@ <parent> <groupId>com.googlecode.gwtquery</groupId> <artifactId>gwtquery-project</artifactId> - <version>1.1.0-SNAPSHOT</version> + <version>1.1.1-SNAPSHOT</version> </parent> <name>GwtQuery Samples</name> @@ -42,7 +42,10 @@ <style>${gwt.outputstyle}</style> <gwtVersion>${gwtversion}</gwtVersion> <compileReport>true</compileReport> + <!-- <disableClassMetadata>true</disableClassMetadata> --> + <disableCastChecking>true</disableCastChecking> <modules> + <module>gwtquery.samples.GwtQueryImageZoom</module> <module>gwtquery.samples.GwtQueryBench</module> <module>gwtquery.samples.JsCollectionVsJavaCollection</module> <module>gwtquery.samples.GwtQuerySample</module> diff --git a/samples/src/main/java/gwtquery/samples/GwtQueryImageZoom.gwt.xml b/samples/src/main/java/gwtquery/samples/GwtQueryImageZoom.gwt.xml index 7fe8b07d..25bf3507 100644 --- a/samples/src/main/java/gwtquery/samples/GwtQueryImageZoom.gwt.xml +++ b/samples/src/main/java/gwtquery/samples/GwtQueryImageZoom.gwt.xml @@ -1,5 +1,7 @@ <module> <inherits name='com.google.gwt.query.Query'/> <entry-point class='gwtquery.samples.client.GwtQueryImageZoom'/> + <add-linker name="xsiframe"/> + <set-property name="compiler.stackMode" value="strip"/> </module> |