执行 gwt:test 时我需要设置一些额外的类路径条目。它们主要包含属性文件,仅在运行时需要。
我必须在我的 pom 中设置哪个配置参数才能获得额外的类路径条目?
我当前的 gwt-maven-plugin 配置看起来像(pom 的片段):
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwtVersion}</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test</goal>
<goal>i18n</goal>
<goal>generateAsync</goal>
</goals>
<configuration>
<extraJvmArgs>-Xmx1024M -Xss512M</extraJvmArgs>
</configuration>
</execution>
</executions>
<!-- Plugin configuration. There are many available options, see gwt-maven-plugin
documentation at codehaus.org -->
<configuration>
<mode>htmlunit</mode>
<runTarget>Myproject.html</runTarget>
<out>${webappDirectory}</out>
<hostedWebapp>
${project.build.directory}/${project.build.finalName}
</hostedWebapp>
<i18nMessagesBundle>myproject.web.client.Messages</i18nMessagesBundle>
</configuration>
</plugin>
我正在使用 gwt 2.5.1。我在这个小问题上花费的时间已经超出了我的预期。