0

执行 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。我在这个小问题上花费的时间已经超出了我的预期。

4

1 回答 1

2

gwt:test将使用标准的 Maven 测试类路径,包括 -for resources- 与<scope>test</scope>testResources目录的依赖关系。

假设您的属性文件是 Maven 模块的本地文件,那么只需将它们放入src/test/resources,或将适当的父文件夹添加为testResource

<build>
  <testResources>
    <testResource>
      <directory>${basedir}/src/test/resources</directory>
    </testResource>
    <testResource>
      <directory>${basedir}/src/test-properties-files</directory>
    </testResource>
  </testResources>
于 2013-04-10T10:19:47.790 回答