aboutsummaryrefslogtreecommitdiffstats
path: root/devtest/pom.xml
diff options
context:
space:
mode:
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-03-03 22:00:29 +0100
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-03-03 22:00:29 +0100
commit42f082a144b416fb3345f89ac968b7dcbe3d8d08 (patch)
tree49b9a1a14e9ded87ef4448e4ec14909c1ebd01d9 /devtest/pom.xml
parentd8103d128beae7c038fd94631f286c15ad504241 (diff)
downloadgwtquery-42f082a144b416fb3345f89ac968b7dcbe3d8d08.tar.gz
gwtquery-42f082a144b416fb3345f89ac968b7dcbe3d8d08.zip
First implementation of Deferred and Promises. Ajax tests work. then implementation is not ok. Needs tests
Diffstat (limited to 'devtest/pom.xml')
-rw-r--r--devtest/pom.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/devtest/pom.xml b/devtest/pom.xml
index 3f73740f..42e25b56 100644
--- a/devtest/pom.xml
+++ b/devtest/pom.xml
@@ -31,6 +31,11 @@
<version>${gwtversion}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>com.google.gwt</groupId>
+ <artifactId>gwt-codeserver</artifactId>
+ <version>${gwtversion}</version>
+ </dependency>
</dependencies>
<build>
<resources>
@@ -89,6 +94,30 @@
</additionalProjectnatures>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.2.1</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>java</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <mainClass>com.google.gwt.dev.codeserver.CodeServer</mainClass>
+ <arguments>
+ <argument>-src</argument>
+ <argument>src/main/java</argument>
+ <argument>-bindAddress</argument>
+ <argument>0.0.0.0</argument>
+ <argument>com.google.gwt.query.DevTestRunner</argument>
+ </arguments>
+ <classpathScope>compile</classpathScope>
+ </configuration>
+ </plugin>
+
</plugins>
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
</build>