aboutsummaryrefslogtreecommitdiffstats
path: root/devtest
diff options
context:
space:
mode:
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-03-16 11:52:38 +0100
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-03-16 11:52:38 +0100
commit4771984d9ee4f142441ff7956b11af6ac2832a3d (patch)
tree18dbc1bba3594bdabcbf59192029b23436394fc7 /devtest
parentd330e3a777140cd30dd3959196acbb2f7664fb41 (diff)
downloadgwtquery-4771984d9ee4f142441ff7956b11af6ac2832a3d.tar.gz
gwtquery-4771984d9ee4f142441ff7956b11af6ac2832a3d.zip
Explain how to use superdev mode with maven
Diffstat (limited to 'devtest')
-rw-r--r--devtest/README.txt3
-rw-r--r--devtest/pom.xml29
2 files changed, 2 insertions, 30 deletions
diff --git a/devtest/README.txt b/devtest/README.txt
index 54b9d5a3..5823641a 100644
--- a/devtest/README.txt
+++ b/devtest/README.txt
@@ -16,7 +16,8 @@ order to speed up TDD.
- When your test was ready put it in your test class extending
GWTTestCase.
-
+- If you prefer superdev mode run: mvn gwt:run-codeserver but
+ you have to be familiar with debuging in javascript and use source maps.
diff --git a/devtest/pom.xml b/devtest/pom.xml
index f966c5ca..7c32ffee 100644
--- a/devtest/pom.xml
+++ b/devtest/pom.xml
@@ -31,11 +31,6 @@
<version>${gwtversion}</version>
<scope>provided</scope>
</dependency>
- <dependency>
- <groupId>com.google.gwt</groupId>
- <artifactId>gwt-codeserver</artifactId>
- <version>${gwtversion}</version>
- </dependency>
</dependencies>
<build>
<resources>
@@ -94,30 +89,6 @@
</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>