diff options
author | Manuel Carrasco Moñino <manuel.carrasco.m@gmail.com> | 2013-03-23 01:48:58 +0100 |
---|---|---|
committer | Manuel Carrasco Moñino <manuel.carrasco.m@gmail.com> | 2013-03-23 01:48:58 +0100 |
commit | c4f16d77e01daddb3ba1ee64d9e428c8267587b2 (patch) | |
tree | b37ccc9ff2fbb9256d1bcb4aad418bcd1b22753a | |
parent | 750b889768d7db59f78c03b7b619ddb372688814 (diff) | |
download | gwtquery-c4f16d77e01daddb3ba1ee64d9e428c8267587b2.tar.gz gwtquery-c4f16d77e01daddb3ba1ee64d9e428c8267587b2.zip |
Configure core tests so as we can run with a browser
-rw-r--r-- | gwtquery-core/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gwtquery-core/pom.xml b/gwtquery-core/pom.xml index 43f71e1f..9f4c212b 100644 --- a/gwtquery-core/pom.xml +++ b/gwtquery-core/pom.xml @@ -82,6 +82,19 @@ <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>gwt-maven-plugin</artifactId> + <version>${gwtmaven}</version> + <configuration> + <gwtVersion>${gwtversion}</gwtVersion> + <productionMode>false</productionMode> + <timeOut>300</timeOut> + <includes>**/GQueryGwtSuiteTest.java</includes> + </configuration> + </plugin> + </plugins> </build> |