diff options
author | Manolo Carrasco <manolo@apache.org> | 2010-05-06 09:34:26 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2010-05-06 09:34:26 +0000 |
commit | d2de3e94ac24e22b1ba4f91edd27954ea696fdb3 (patch) | |
tree | ef3bbe644afed7ca8d7decd1ed6ff6eb7e30e20f /gwtquery-core/pom.xml | |
parent | 624e970f7b2b6e2224de4e625156f4f4c10f4d4e (diff) | |
download | gwtquery-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.xml | 24 |
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> |