aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gwtquery-core/pom.xml24
-rw-r--r--gwtquery-core/src/test/java/com/google/gwt/query/Test.gwt.xml3
-rw-r--r--gwtquery-core/src/test/java/com/google/gwt/query/client/GwtEventsTest.java2
-rw-r--r--plugins/pom.xml2
-rw-r--r--pom.xml22
-rw-r--r--samples/pom.xml2
6 files changed, 45 insertions, 10 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>
diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/Test.gwt.xml b/gwtquery-core/src/test/java/com/google/gwt/query/Test.gwt.xml
deleted file mode 100644
index b048bdaf..00000000
--- a/gwtquery-core/src/test/java/com/google/gwt/query/Test.gwt.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-<module>
- <inherits name='com.google.gwt.query.Query'/>
-</module>
diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/GwtEventsTest.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/GwtEventsTest.java
index 720fedb0..ca28b0f7 100644
--- a/gwtquery-core/src/test/java/com/google/gwt/query/client/GwtEventsTest.java
+++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/GwtEventsTest.java
@@ -38,7 +38,7 @@ public class GwtEventsTest extends GWTTestCase {
static HTML testPanel = null;
public String getModuleName() {
- return "com.google.gwt.query.Test";
+ return "com.google.gwt.query.Query";
}
public void gwtSetUp() {
diff --git a/plugins/pom.xml b/plugins/pom.xml
index 78fb5f36..9a0d8f95 100644
--- a/plugins/pom.xml
+++ b/plugins/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>
<name>GwtQuery Plugins</name>
diff --git a/pom.xml b/pom.xml
index cf78fc53..c0a056c5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
<groupId>com.google.gwt</groupId>
<artifactId>gwtquery-project</artifactId>
<packaging>pom</packaging>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
<name>Gwt Query Project</name>
<url>http://gwtquery.com</url>
<description>GwtQuery is a jQuery clone written in GWT.</description>
@@ -52,13 +52,33 @@
</modules>
<distributionManagement>
+ <!--
<repository>
<uniqueVersion>false</uniqueVersion>
<id>timepedia-deploy</id>
<url>svn:https://gwt-chronoscope.googlecode.com/svn/mavenrepo/</url>
</repository>
+ -->
+ <repository>
+ <uniqueVersion>false</uniqueVersion>
+ <id>googlecode</id>
+ <url>svn:https://gwtquery.googlecode.com/svn/mavenrepo/</url>
+ </repository>
+ <snapshotRepository>
+ <uniqueVersion>false</uniqueVersion>
+ <id>googlecode</id>
+ <url>svn:https://gwtquery.googlecode.com/svn/mavenrepo/</url>
+ </snapshotRepository>
</distributionManagement>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>gcupload</id>
+ <name>Repository for gcupload plugin</name>
+ <url>http://gwtupload.googlecode.com/svn/mavenrepo</url>
+ </pluginRepository>
+ </pluginRepositories>
+
<build>
<plugins>
<plugin>
diff --git a/samples/pom.xml b/samples/pom.xml
index 18af3fa7..58b6dfef 100644
--- a/samples/pom.xml
+++ b/samples/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>
<name>GwtQuery Samples</name>