哈德森和三叶草插件

发布于 2024-10-19 16:25:38 字数 116 浏览 2 评论 0原文

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

谢谢 达米安

We are using the Clover plugin on Hudson.
Is it possible to set a property on hudson to exclude certain files / packages from being analyzed by clover?
I was looking at the project documentation but didnt come across anything in relation to properties

Thanks
Damien

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼中杀气 2024-10-26 16:25:38

你使用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>

希望能帮助您......

Are you using Maven? If so, I think Hudson (or Jenkins) will be use the maven plugin configuration to determine which classes to exclude. You simply configure a set of RegEx expressions that you want to exclude from instrumentation. In a similar way to the example below:

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

Hope that helps you out...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文