0
我有以下Maven配置
我的目標是取代Web的XML從平常的web.xml的發展模式,以網絡dev.xml
GWT-Maven的插件似乎有配置工作(webXml),但它不工作而不是作爲eclipse插件(運行web應用程序),而不是當mvn gwt:run時。GWT Maven插件替換的web.xml
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwtVersion}</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<configuration>
<gwtSdkFirstInClasspath>true</gwtSdkFirstInClasspath>
<hostedWebapp>${webappDirectory}</hostedWebapp>
<runTarget>index.html</runTarget>
<style>PRETTY</style>
<webXml>src/main/webapp/WEB-INF/web-dev.xml</webXml>
<inplace>true</inplace>
</configuration>
</plugin>