Ant Pitest 子目录 targetClasses 属性
我的代码像这样完美地工作。
但我想删除“org.apache.commons.lang3.*”(整个地址)并只写*,这样它就可以获取当前文件夹和子目录中的所有文件。我想让我的代码适用于不同的项目,并且不想一次又一次地更改它。我想让它变得普遍。我只想指向目标文件夹并让它获取该文件夹中的所有文件和子目录文件。到目前为止,我已经尝试过:
( .**.* ) ( .* ) (.* / ) (.* \ )
有什么线索可以做到这一点吗?
My code works perfectly like this.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,使用最坑爹的 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.