从jacoco分析中排除加密的Jar

时间:2018-03-20 08:04:36

标签: jacoco jacoco-maven-plugin

如何从jacoco分析中排除cncrypted jar,因为它给出了ClassNotFound异常? 我试图使用jacoco-maven-plugin中的排除内部配置来删除jar。但那并没有奏效。有人请帮忙。

先谢谢你。 这是我正在使用的插件配置。

<plugin>
    <groupId>org.jacoco</groupId>
    <artifactId>jacoco-maven-plugin</artifactId>
    <configuration>
        <excludes>
            <exclude>com/companyname/*</exclude>
        </excludes>
    </configuration>
    <executions>
        <execution>
            <id>default-prepare-agent</id>
            <goals>
                <goal>prepare-agent</goal>
            </goals>
        </execution>
        <execution>
            <id>default-report</id>
            <phase>site</phase>
            <goals>
                <goal>report</goal>
            </goals>
        </execution>
    </executions>
</plugin>

1 个答案:

答案 0 :(得分:0)

在我的情况下,执行jacoco执行的以下配置有效。

<excludes>
    <exclude>**/myJar.jar/**</exclude>
</excludes>