Ant Pitest 子目录 targetClasses 属性

发布于 2025-01-10 18:33:03 字数 385 浏览 0 评论 0原文

我的代码像这样完美地工作。

代码

但我想删除“org.apache.commons.lang3.*”(整个地址)并只写*,这样它就可以获取当前文件夹和子目录中的所有文件。我想让我的代码适用于不同的项目,并且不想一次又一次地更改它。我想让它变得普遍。我只想指向目标文件夹并让它获取该文件夹中的所有文件和子目录文件。到目前为止,我已经尝试过:

( .**.* ) ( .* ) (.* / ) (.* \ )

有什么线索可以做到这一点吗?

My code works perfectly like this.

Code

But I want to remove "org.apache.commons.lang3.*" (Whole address) and just write * so it can get all files in the current folder and subdirectories. I wanted to make my code work on different projects and don't want to change it again and again. I want to make it universal. I just want to point to the target folder and let it get all files in the folder and subdirectories files. So far I have tried:

( .**.* ) ( .* ) (.* / ) (.* \ )

Any clue how to do this?

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

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

发布评论

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

评论(1

眼泪淡了忧伤 2025-01-17 18:33:03

目前,使用最坑爹的 Ant 插件还无法做到这一点。这些 glob 与类路径中的所有类相匹配,因此使用“所有”glob 都会对所有被检测的类产生结果。

如果没有向pitest maven插件提供glob,它将扫描源目录并根据在那里找到的包构造一个过滤器。没有计划将此功能移植到 Ant。

This is not currently possible with the pitest Ant plugin. The globs are matched against all classes in the classpath, so using an 'everything' glob results on all classes being instrumented.

If no glob is supplied to the pitest maven plugin, it will scan the source directories and construct a filter based on the packages found there. There is no plan to port this functionality to Ant.

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