aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core/pom.xml
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2010-05-06 09:34:26 +0000
committerManolo Carrasco <manolo@apache.org>2010-05-06 09:34:26 +0000
commitd2de3e94ac24e22b1ba4f91edd27954ea696fdb3 (patch)
treeef3bbe644afed7ca8d7decd1ed6ff6eb7e30e20f /gwtquery-core/pom.xml
parent624e970f7b2b6e2224de4e625156f4f4c10f4d4e (diff)
downloadgwtquery-d2de3e94ac24e22b1ba4f91edd27954ea696fdb3.tar.gz
gwtquery-d2de3e94ac24e22b1ba4f91edd27954ea696fdb3.zip
Set version number to 1.0.0. Deploy sites now are pointing to gwtquery svn-repo. Added gcupload-maven-plugin to upload distribution file to google-code. Modified surefire configuration in order to run gwtTests which share the same module, and run emma goals
Diffstat (limited to 'gwtquery-core/pom.xml')
-rw-r--r--gwtquery-core/pom.xml24
1 files changed, 21 insertions, 3 deletions
diff --git a/gwtquery-core/pom.xml b/gwtquery-core/pom.xml
index 4b1af9e9..50b780b2 100644
--- a/gwtquery-core/pom.xml
+++ b/gwtquery-core/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.google.gwt</groupId>
<artifactId>gwtquery-project</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>gwtquery</artifactId>
@@ -79,7 +79,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>2.4.3</version>
<configuration>
<skipTests>false</skipTests>
<additionalClasspathElements>
@@ -90,7 +89,12 @@
${project.build.testSourceDirectory}
</additionalClasspathElement>
</additionalClasspathElements>
+ <!-- Needed to run gwt-Tests -->
<useManifestOnlyJar>false</useManifestOnlyJar>
+ <!-- Necessary to run tests with return the same getModuleName-->
+ <forkMode>always</forkMode>
+ <!-- This makes emma:emma fail -->
+ <!-- <useSystemClassLoader>true</useSystemClassLoader> -->
<systemProperties>
<property>
<name>gwt.args</name>
@@ -99,8 +103,22 @@
</systemProperties>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.riedelcastro</groupId>
+ <artifactId>gcupload-maven-plugin</artifactId>
+ <version>0.9</version>
+ <configuration>
+ <allowSnapshots>true</allowSnapshots>
+ <projectName>${artifactId}</projectName>
+ <uploads>
+ <upload>
+ <extensions>jar</extensions>
+ <labels>Featured</labels>
+ </upload>
+ </uploads>
+ </configuration>
+ </plugin>
</plugins>
-
</build>
</project>