aboutsummaryrefslogtreecommitdiffstats
path: root/archetype
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2011-02-16 09:40:14 +0000
committerManolo Carrasco <manolo@apache.org>2011-02-16 09:40:14 +0000
commita47dc70ba39b0dc48640cfef581542c29e745ef8 (patch)
tree1012756d3efa18448f26c362b0e4a026b1e04abc /archetype
parent1478ca2cd8b3a26516cb28feee31b96622278fed (diff)
downloadgwtquery-a47dc70ba39b0dc48640cfef581542c29e745ef8.tar.gz
gwtquery-a47dc70ba39b0dc48640cfef581542c29e745ef8.zip
Archetype now generates gwt-2.2.0 projects
Diffstat (limited to 'archetype')
-rw-r--r--archetype/pom.xml4
-rw-r--r--archetype/src/main/resources/archetype-resources/pom.xml13
2 files changed, 13 insertions, 4 deletions
diff --git a/archetype/pom.xml b/archetype/pom.xml
index 2503f074..2048c986 100644
--- a/archetype/pom.xml
+++ b/archetype/pom.xml
@@ -6,7 +6,9 @@
<artifactId>gquery-archetype</artifactId>
<version>0.4-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
- <name>This archetype generates a Gwt project with GwtQuery</name>
+ <name>GwtQuery Archetype</name>
+ <description>This archetype generates a Gwt-2.2.0 project with all set to use GwtQuery and its plugins</description>
+
<parent>
<groupId>org.sonatype.oss</groupId>
diff --git a/archetype/src/main/resources/archetype-resources/pom.xml b/archetype/src/main/resources/archetype-resources/pom.xml
index b062e8f1..8a3c610f 100644
--- a/archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetype/src/main/resources/archetype-resources/pom.xml
@@ -12,7 +12,8 @@
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
<gQueryVersion>1.0.0-SNAPSHOT</gQueryVersion>
- <gwtversion>2.1.0</gwtversion>
+ <gwtversion>2.2.0</gwtversion>
+ <gwtmaven>2.1.0-1</gwtmaven>
</properties>
<repositories>
@@ -21,6 +22,10 @@
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
+ <id>gwtquery-plugins</id>
+ <url>http://gwtquery-plugins.googlecode.com/svn/mavenrepo</url>
+ </repository>
+ <repository>
<id>sonatype</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots><enabled>true</enabled></snapshots>
@@ -55,7 +60,7 @@
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtversion}</version>
- <scope>test</scope>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
@@ -67,6 +72,8 @@
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery</artifactId>
<version>${gQueryVersion}</version>
+ <!-- Put 2.2.0 for gwt-2.2.0 or leave empty for 2.1.x -->
+ <classifier>2.2.0</classifier>
<scope>provided</scope>
</dependency>
</dependencies>
@@ -75,7 +82,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
- <version>${gwtversion}</version>
+ <version>${gwtmaven}</version>
<configuration>
<logLevel>${gwt.loglevel}</logLevel>
<style>${gwt.outputstyle}</style>