如何禁用“Test Source Xref”

时间:2013-04-02 12:19:29

标签: maven maven-site-plugin

我正在使用Maven Site Plugin来生成我的项目页面。我也想发布消息来源。所以我使用了JXR插件。有人知道是否可以禁用“Test Source Xref”报告。我只找到了此页面http://jira.codehaus.org/browse/JXR-47,但此参数似乎不起作用。 我在POM中的配置如下所示:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.2</version>
<configuration>
<reportPlugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jxr-plugin</artifactId>
        <version>2.3</version>
        <configuration>
            <suppressTestXref>true</suppressTestXref>
        </configuration>
    </plugin>
</reportPlugins>
</configuration>
</plugin>

1 个答案:

答案 0 :(得分:5)

suppressTestXref不再可用。这样做的方法是:

<project ...>
  ...
  <reporting>
     ...
     <plugins>
        <plugin>
            <artifactId>maven-jxr-plugin</artifactId>
            <version>2.3</version>
            <reportSets>
                <reportSet>
                    <reports>
                        <report>jxr</report>
                    </reports>
                </reportSet>
            </reportSets>
        </plugin>

AFAIK没有在任何地方记录:)