aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core/pom.xml
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2011-11-03 10:53:52 +0000
committerManolo Carrasco <manolo@apache.org>2011-11-03 10:53:52 +0000
commite05275405689442f05ea6f3fc5da5ca1bf4636dd (patch)
treee14ae329071b801a96714f0f7bb5c4c72d004b32 /gwtquery-core/pom.xml
parente3a57614031bfdb5e83c147c003a3a2014bc455a (diff)
downloadgwtquery-e05275405689442f05ea6f3fc5da5ca1bf4636dd.tar.gz
gwtquery-e05275405689442f05ea6f3fc5da5ca1bf4636dd.zip
fix tests, group them in a gwt-suite to run in a jvm instance and speed up maven test
Diffstat (limited to 'gwtquery-core/pom.xml')
-rw-r--r--gwtquery-core/pom.xml40
1 files changed, 11 insertions, 29 deletions
diff --git a/gwtquery-core/pom.xml b/gwtquery-core/pom.xml
index afd465ce..520531a4 100644
--- a/gwtquery-core/pom.xml
+++ b/gwtquery-core/pom.xml
@@ -70,35 +70,17 @@
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skipTests>false</skipTests>
- <additionalClasspathElements>
- <additionalClasspathElement>
- ${project.build.sourceDirectory}
- </additionalClasspathElement>
- <additionalClasspathElement>
- ${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> -->
- <parallel>both</parallel>
- <threadCount>6</threadCount>
- <systemProperties>
- <property>
- <name>gwt.args</name>
- <value>-out target/www-junit</value>
- <name>gwt.noserver</name>
- <value>true</value>
- </property>
- </systemProperties>
- </configuration>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <additionalClasspathElements>
+ <additionalClasspathElement>${basedir}/src/main/java</additionalClasspathElement>
+ <additionalClasspathElement>${basedir}/src/test/java</additionalClasspathElement>
+ </additionalClasspathElements>
+ <!-- <useManifestOnlyJar>false</useManifestOnlyJar> -->
+ <!-- <forkMode>always</forkMode> -->
+ <useSystemClassLoader>false</useSystemClassLoader>
+ </configuration>
</plugin>
<plugin>
<groupId>org.riedelcastro</groupId>