diff options
Diffstat (limited to 'archetype')
3 files changed, 3 insertions, 4 deletions
diff --git a/archetype/pom.xml b/archetype/pom.xml index 0f9b3d08..c261395d 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.1.1-SNAPSHOT</version> + <version>1.1.0</version> <packaging>maven-archetype</packaging> <name>GwtQuery Archetype</name> <description>This archetype generates a Gwt-2.2.0 project with all set to use GwtQuery and its plugins</description> diff --git a/archetype/src/main/resources/archetype-resources/README.txt b/archetype/src/main/resources/archetype-resources/README.txt index f231688a..1a51f9e5 100644 --- a/archetype/src/main/resources/archetype-resources/README.txt +++ b/archetype/src/main/resources/archetype-resources/README.txt @@ -13,9 +13,8 @@ $ mvn gwt:run The archetype generates a project ready to be used in eclipse, but before importing it you have to install the following plugins: - * Google plugin for eclipse (update-site: http://dl.google.com/eclipse/plugin/3.6) + * Google plugin for eclipse (update-site: http://dl.google.com/eclipse/plugin/3.7 or 3.6 or 3.5) * Sonatype Maven plugin (update-site: http://m2eclipse.sonatype.org/site/m2e) - * Subversion plugin (update-site: http://subclipse.tigris.org/update_1.6.x) Then you can import the project in your eclipse workspace: 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 cb4fc699..aef7cf9e 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 @@ -24,7 +24,7 @@ public class ${projectName}Test extends GWTTestCase { public void testOnModuleLoad() { - // execute the plugin method + // Create a container in the document final GQuery g = $("<div></div>").appendTo(document); // run onModuleLoad |