after much read about SuperDevMode gwt 2.5 I wanted to try it myself. I read https://vaadin.com/blog/-/blogs/vaadin-and-superdevmode and some other articles. As far as I understand, I need to run the codeerver class. I checked the gwt-maven-plugin repository, but was not sure if there was gwt2.5 support.
Has anyone been able to get SuperDevMode to work with maven?
Regards, arne
Edit:
Thanks to Thomas, I got a job! Here is an excerpt from my pom.
<resources> <resource> <directory> src/main/java </directory> </resource> </resources> <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>com.myapp.Application</argument> </arguments> </configuration> </plugin>
Now I just need to run the target: exec:java to start the code server.
source share