在Maven 3.0.5中汇总findbugs报告

时间:2016-01-16 16:21:26

标签: maven maven-3 findbugs

我正在使用多模块Maven项目(超过10个模块)。我正在尝试在单个html页面中创建所有模块的findbugs报告。有什么办法吗?

为每个模块创建单独的报告,我使用以下

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>findbugs-maven-plugin</artifactId>
    <version>3.0.0</version>
    <configuration>
        <!--
            Enables analysis which takes more memory but finds more bugs.
            If you run out of memory, changes the value of the effort element
            to 'Low'.
        -->
        <effort>Max</effort>
        <!-- Build doesn't fail if problems are found -->
        <failOnError>false</failOnError>
        <!-- Reports all bugs (other values are medium and max) -->
        <threshold>Low</threshold>
        <!-- Produces XML report -->
        <xmlOutput>false</xmlOutput>
        <skip>${skipFindbugs}</skip>
        <!-- Configures the directory in which the XML report is created -->
        <findbugsXmlOutputDirectory>${project.build.directory}/findbugs</findbugsXmlOutputDirectory>
    </configuration>
    <executions>
        <!--
            Ensures that FindBugs inspects source code when project is compiled.
        -->
        <execution>

            <phase>compile</phase>
            <goals>
                <goal>findbugs</goal>
            </goals>
        </execution>
    </executions>
</plugin>

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>xml-maven-plugin</artifactId>
    <version>1.0</version>
    <configuration>
        <transformationSets>
            <transformationSet>
                <!-- Configures the source directory of XML files. -->
                <dir>${project.build.directory}/findbugs</dir>
                <!-- Configures the directory in which the FindBugs report is written.-->
                <outputDir>${project.build.directory}/findbugs</outputDir>
                <!-- Selects the used stylesheet. -->
                <!-- <stylesheet>fancy-hist.xsl</stylesheet> -->
                <stylesheet>${project.parent.basedir}/default.xsl</stylesheet>
                <!--<stylesheet>plain.xsl</stylesheet>-->
                <!--<stylesheet>fancy.xsl</stylesheet>-->
                <!--<stylesheet>summary.xsl</stylesheet>-->
                <fileMappers>
                    <!-- Configures the file extension of the output files. -->
                    <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
                        <targetExtension>.html</targetExtension>
                    </fileMapper>
                </fileMappers>
            </transformationSet>
        </transformationSets>
    </configuration>
    <executions>
        <!-- Ensures that the XSLT transformation is run when the project is compiled. -->
        <execution>

            <phase>compile</phase>
            <goals>
                <goal>transform</goal>
            </goals>
        </execution>
    </executions>
    <dependencies>
        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>findbugs</artifactId>
            <version>3.0.0</version>
        </dependency>
    </dependencies>
</plugin>

1 个答案:

答案 0 :(得分:4)

根据插件的official documentation(问题1),这是不可能的。

然而,这是我用来实现它的方法:

  • 在现有的multimodule项目中添加其他模块。此附加模块仅用于报告
  • 配置Buildhelper Maven Plugin以将其他模块的源代码动态添加到报告模块。注意:如果需要,您可以对资源执行相同的操作。
  • 仅在报告模块上配置Findbugs插件
  • 将其他模块添加为报告模块的依赖项,以便让Maven reactor构建仅在最后构建它。
  • 如果需要:您不希望报告模块成为默认构建的一部分,请在聚合器/父模块中创建配置文件,该模板重新定义modules元素并向其添加报告模块。因此,只有在激活配置文件时(即通过命令行,按需),才会添加报告模块,并创建汇总报告。

例如,在聚合器/父模块中,您可以定义如下:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.sample</groupId>
    <artifactId>findbugs-parent</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>pom</packaging>

    <modules>
        <module>findbugs-module1</module>
        <module>findbugs-module2</module>
    </modules>

    <profiles>
        <profile>
            <id>findbugs-reporting</id>
            <modules>
                <module>findbugs-module1</module>
                <module>findbugs-module2</module>
                <module>findbugs-reporting</module>
            </modules>
        </profile>
    </profiles>
</project>

注意:findbugs-reporting模块仅添加在findbugs-reporting配置文件中。默认情况下,构建将忽略它。

在findbugs-reporting模块中,使用您发布的配置(findbugs和XML maven插件)配置POM,并添加如下内容:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.9.1</version>
    <executions>
        <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>add-source</goal>
            </goals>
            <configuration>
                <sources>
                    <source>..\findbugs-module1\src\main\java</source>
                    <source>..\findbugs-module2\src\main\java</source>
                </sources>
            </configuration>
        </execution>
    </executions>
</plugin>

请注意其他模块中添加的来源(根据您的项目进行更改)。

此外,我们还需要向报告模块添加依赖项。它必须依赖于其他模块才能在最后构建(因此确保从其他模块获取最新的更改/源)。举个例子:

<dependencies>
    <dependency>
        <groupId>com.sample</groupId>
        <artifactId>findbugs-module1</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </dependency>
    <dependency>
        <groupId>com.sample</groupId>
        <artifactId>findbugs-module2</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </dependency>
</dependencies>

最后,您可以从聚合器/父目录调用报告构建:

mvn clean install -Pfindbugs-reporting

因此,您将构建整个项目并另外激活报告模块,该模块将动态地包含来自其他模块(如配置)的源并生成聚合报告。

根据您的需要,您可以避开配置文件步骤(如果您希望将其作为默认构建的一部分)或默认情况下激活配置文件(以便您可以跳过报告构建通过-P!findbugs-reporting停用它)或者使用您已经配置的skipFindbugs属性(在这种情况下没有配置文件)。