aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-04-09 16:27:35 +0200
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-04-09 16:27:35 +0200
commit929882857a0350db62ead1102bc77b3c45b9a035 (patch)
treece36b3ad8a338c6fddf972383922f9f321a3b288
parent09473f748c9f098a7a86cc623adacdc32480953d (diff)
downloadgwtquery-release-1.3.3.tar.gz
gwtquery-release-1.3.3.zip
New release 1.3.3 because 1.3.2 only is compatible with 2.5.x. Fixes issue 176release-1.3.3
-rw-r--r--archetype/pom.xml2
-rw-r--r--archetype/src/main/resources/archetype-resources/README.txt5
-rw-r--r--devtest/pom.xml2
-rw-r--r--gwtquery-core-2.0.1/pom.xml2
-rw-r--r--gwtquery-core-2.1.0/pom.xml2
-rw-r--r--gwtquery-core/pom.xml4
-rw-r--r--gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java2
-rw-r--r--gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/callbacks/Callbacks.java2
-rw-r--r--jsquery/pom.xml2
-rw-r--r--pom.xml2
-rw-r--r--samples/pom.xml2
11 files changed, 16 insertions, 11 deletions
diff --git a/archetype/pom.xml b/archetype/pom.xml
index 1636a2fa..536bd73a 100644
--- a/archetype/pom.xml
+++ b/archetype/pom.xml
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gquery-archetype</artifactId>
- <version>1.3.2</version>
+ <version>1.3.3</version>
<packaging>maven-archetype</packaging>
<name>GwtQuery Archetype</name>
diff --git a/archetype/src/main/resources/archetype-resources/README.txt b/archetype/src/main/resources/archetype-resources/README.txt
index 52c178a6..128fb294 100644
--- a/archetype/src/main/resources/archetype-resources/README.txt
+++ b/archetype/src/main/resources/archetype-resources/README.txt
@@ -7,6 +7,11 @@ $ mvn clean install
- Run it in development mode:
$ mvn gwt:run
+and point your browser to http://127.0.0.1:8888/${projectName}/${projectName}.html?gwt.codesvr=127.0.0.1:9997
+
+- Run superdev mode:
+$ mvn gwt:run-codeserver
+and point your browser to http://127.0.0.1:9876/${projectName}/${projectName}.html
- Import and run in Eclipse:
diff --git a/devtest/pom.xml b/devtest/pom.xml
index a9741a61..60cf30f9 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.3.2</version>
+ <version>1.3.3</version>
</parent>
<artifactId>devtest</artifactId>
diff --git a/gwtquery-core-2.0.1/pom.xml b/gwtquery-core-2.0.1/pom.xml
index 6737307b..02d8398c 100644
--- a/gwtquery-core-2.0.1/pom.xml
+++ b/gwtquery-core-2.0.1/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
- <version>1.3.2</version>
+ <version>1.3.3</version>
</parent>
<description>Generates an artifact compiled with a concrete gwt version specified in the artifactId</description>
diff --git a/gwtquery-core-2.1.0/pom.xml b/gwtquery-core-2.1.0/pom.xml
index 6af637b1..71630b1e 100644
--- a/gwtquery-core-2.1.0/pom.xml
+++ b/gwtquery-core-2.1.0/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
- <version>1.3.2</version>
+ <version>1.3.3</version>
</parent>
<description>Generates an artifact compiled with a concrete gwt version specified in the artifactId</description>
diff --git a/gwtquery-core/pom.xml b/gwtquery-core/pom.xml
index db9c8336..5c78e929 100644
--- a/gwtquery-core/pom.xml
+++ b/gwtquery-core/pom.xml
@@ -3,12 +3,12 @@
<parent>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
- <version>1.3.2</version>
+ <version>1.3.3</version>
</parent>
<artifactId>gwtquery</artifactId>
<packaging>jar</packaging>
- <version>1.3.2</version>
+ <version>1.3.3</version>
<name>Gwt Query Core API</name>
<url>http://gwtquery.com</url>
<dependencies>
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java
index 7999e10d..08fbfe89 100644
--- a/gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java
+++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java
@@ -17,7 +17,7 @@ package com.google.gwt.query.client;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArrayMixed;
-import com.google.gwt.core.shared.GWT;
+import com.google.gwt.core.client.GWT;
import com.google.gwt.query.client.js.JsCache;
import com.google.gwt.query.client.js.JsUtils;
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/callbacks/Callbacks.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/callbacks/Callbacks.java
index 04db71fd..170e2f0e 100644
--- a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/callbacks/Callbacks.java
+++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/callbacks/Callbacks.java
@@ -13,7 +13,7 @@
*/
package com.google.gwt.query.client.plugins.callbacks;
-import com.google.gwt.core.shared.GWT;
+import com.google.gwt.core.client.GWT;
import com.google.gwt.query.client.Function;
import com.google.gwt.query.client.Properties;
import com.google.gwt.query.client.builders.JsonBuilder;
diff --git a/jsquery/pom.xml b/jsquery/pom.xml
index a09bfb5a..bb550246 100644
--- a/jsquery/pom.xml
+++ b/jsquery/pom.xml
@@ -3,7 +3,7 @@
<parent>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
- <version>1.3.2</version>
+ <version>1.3.3</version>
</parent>
<name>JsQuery</name>
diff --git a/pom.xml b/pom.xml
index 9712d5cf..6a4d40f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
<packaging>pom</packaging>
- <version>1.3.2</version>
+ <version>1.3.3</version>
<name>Gwt Query Project</name>
<url>http://gwtquery.com</url>
<description>GwtQuery is a jQuery clone written in GWT.</description>
diff --git a/samples/pom.xml b/samples/pom.xml
index 35fb7507..c0530ea9 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.3.2</version>
+ <version>1.3.3</version>
</parent>
<name>GwtQuery Samples</name>