Hudson和Clover插件

时间:2011-03-02 13:59:31

标签: hudson hudson-plugins clover

我们在Hudson上使用Clover插件。 是否可以在hudson上设置属性以排除某些文件/包被三叶草分析? 我正在查看项目文档,但没有遇到与属性相关的任何内容

由于 达明

1 个答案:

答案 0 :(得分:2)

你在使用Maven吗?如果是这样,我认为Hudson(或Jenkins)将使用maven插件配置来确定要排除的类。您只需配置一组要从检测中排除的RegEx表达式。与下面的例子类似:

<plugin>
    <groupId>com.atlassian.maven.plugins</groupId>
    <artifactId>maven-clover2-plugin</artifactId>
    <configuration>
      </includes>
      <excludes>
        <exclude>**/*Test/java</exclude>
        [...]
      </excludes>
     [...]
</plugin>

希望能帮到你......