1

我正在尝试从我的 maven-gwt 项目生成编译报告。

根据这个站点,我应该在生成的源文件夹中看到生成的报告。但是,当我运行其中任何一个时:

mvn gwt:compile-report,
mvn gwt:compile-report -DcompileReport,
mvn gwt:compile-report -DcompileReport=true,
mvn gwt:compile-report -DcompileReport=Test

我得到:

[WARNING] No compile reports found, did you compile with compileReport option set ?

在我的pom.xml文件中,我将报告内容设置为:

<reporting>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>gwt-maven-plugin</artifactId>
            <version>2.5.0</version>
            <reportSets>
                <reportSet>
                    <id>Report</id>
                <reports>
                    <report>Test</report>
                </reports>
                </reportSet>
            </reportSets>
        </plugin>
    </plugins>
</reporting>

编辑:

Pom 更改为:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>gwt-maven-plugin</artifactId>
    <version>2.5.0</version>
    <executions>
      <execution>
        <goals>
          <goal>compile</goal>
          <goal>test</goal>
          <goal>i18n</goal>
          <goal>generateAsync</goal>
        </goals>
        <configuration>
          <draftCompile>true</draftCompile>
          <compileReports>true</compileReports>
          <sources>
            <source>target/generated-sources/gwt</source>
          </sources>
        </configuration>
      </execution>
    </executions>
    <!-- Plugin configuration. There are many available options, -->
    <!--see gwt-maven-plugin documentation at codehaus.org -->
    <configuration>
      <runTarget>Bondegard.html</runTarget>
      <compileReports>true</compileReports>
      <logLevel>SPAM</logLevel>
      <hostedWebapp>${webappDirectory}</hostedWebapp>
      <i18nMessagesBundle>pl.spot.bondegard.bondegard.client.Messages</i18nMessagesBundle>
    </configuration>
  </plugin>

而且仍然没有报告。还有什么建议吗?

4

1 回答 1

4

编译报告在构建期间创建(gwt:compile激活编译报告),gwt:compile-report仅将其发布到您的 Maven 站点。

于 2013-01-15T13:52:29.353 回答