我有以下 maven 配置
,我的目标是将开发模式的 web-xml 从通常的 web.xml 替换为 web-dev.xml
gwt-maven-plugin 似乎有配置(webXml),但它不能作为 eclipse 插件工作(作为 Web 应用程序运行),而不是在 mvn gwt:run 时。
<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>