在Jacoco Maven插件中使用excludes标记时,路径/目录通配符是否起作用?

时间:2019-07-08 04:54:25

标签: java maven pom.xml jacoco jacoco-maven-plugin

我想从我的代码覆盖率报告中排除所有QueryDS L(以Q开头的重复类)生成的类的方法,因为我发现它多余。我似乎无法使用方括号来工作。

正常的星号和双星号都可以,但是方括号表达式不能,例如[A-Za-z0-9]

<plugin>
    <groupId>org.jacoco</groupId>
    <artifactId>jacoco-maven-plugin</artifactId>
    <version>0.8.4</version>
    <configuration>
        <excludes>
            <exclude>**/Q[QP]*</exclude>
        </excludes>
    </configuration>
    <executions>
        <execution>
            <id>prepare-agent</id>
            <goals>
                <goal>prepare-agent</goal>
            </goals>
        </execution>
        <execution>
            <id>jacoco-site</id>
            <phase>test</phase>
            <goals>
                <goal>report</goal>
            </goals>
        </execution>
    </executions>
</plugin>

我不想只使用'**/Q*',因为我有以字母Q开头的类。我希望它排除以Q开头并紧随其后的大写字符的类。有什么解决方法吗?

0 个答案:

没有答案