如何在Maven中使用SuperDevMode

时间:2012-06-16 12:06:30

标签: gwt maven gwt-maven-plugin

在阅读了很多关于gwt 2.5的SuperDevMode之后,我想亲自尝试一下。我阅读了https://vaadin.com/blog/-/blogs/vaadin-and-superdevmode和其他一些文章。据我所知,我必须运行codeserver类。 我检查了gwt-maven-plugin存储库,但不太确定是否已经支持gwt2.5。

有没有人设法让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即可启动代码服务器。

2 个答案:

答案 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以运行代码服务器

(免责声明:我自己没试过,但是)