有没有人设法让SuperDevMode与maven一起工作?
此致 arne
修改
感谢托马斯,我得到了它的工作!这是我的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>
现在我只需运行目标:exec:java
即可启动代码服务器。
答案 0 :(得分:6)
gwt-maven-plugin的2.5.0-rc1版本将通过run-codeserver
goal支持它。该版本目前正在上演。请测试一下vote。
与此同时,您可以将它与exec-maven-plugin一起使用。
答案 1 :(得分:0)
这个src repo:https://github.com/jbarop/gwt-maven-plugin/tree/gwt-2.5看起来像支持GWT 2.5,最后一个提交消息是:
添加mojo以运行代码服务器
(免责声明:我自己没试过,但是)