maven-jacoco-plugin:添加类排除后构建失败

问题描述 投票:0回答:2

我正在使用 Maven jacoco 插件进行代码覆盖。我决定从 jacoco 覆盖率报告中排除一些类。我找到了here,如何做。

所以我更新的 pom 文件如下所示:

<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>

    <artifactId>payment-rest</artifactId>
    <packaging>war</packaging>

    <name>payment-rest</name>

    <parent>
        <artifactId>payment-ws</artifactId>
        <groupId>com.example.foo</groupId>
        <version>1.0.0-INTEGRATION-SNAPSHOT</version>
    </parent>

    <properties>
        <jacoco.line.coverage>0.78</jacoco.line.coverage>
        <jacoco.branch.coverage>1.00</jacoco.branch.coverage>
        <servlet.version>3.0.1</servlet.version>
    </properties>

    <dependencies>

     <!-- all dependecies here-->
    </dependencies>

    <build>
        <finalName>payment-ws</finalName>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>sonar-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            **/com/example/foo/payment/configuration/**.*
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <attachClasses>true</attachClasses>
                    <classesClassifier>classes</classesClassifier>
                    <failOnMissingWebXml>false</failOnMissingWebXml>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

所以,当我运行

mvn clean install
命令时,我收到此错误 ():

Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.19:test failed: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?

enter image description here

如果我删除排除部分,项目将成功构建。

有人可以告诉我如何解决这个问题吗?

java maven
2个回答
0
投票
出现问题是因为您的项目中缺少

maven-surefire-plugin

 
pom.xml
。你需要将这个
plugin
添加到
pom.xml
中,添加后需要更新并重建项目并运行它。

您可以在下面找到maven插件:

<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> </plugin> </plugins>

您可以从

2.19.1

参考更高版本。


0
投票
就我而言,它失败了,因为我通过设置一个自定义参数意外覆盖了

jacoco-maven-plugin

,我只需将其附加到 
@{argLine}
 就可以了。

<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>@{argLine} -Duser.timezone=UTC</argLine> </configuration> </plugin>
    
© www.soinside.com 2019 - 2024. All rights reserved.