测试时构建多个 ant 版本
使用 Apache Buildr 时,项目会引入 ant 1.6.5
作为依赖项。似乎在测试项目时,Buildr 使用 ant 1.8.0
并将其放在类路径中。 JUnit 抱怨多个 ant 版本。
可以设置,
Buildr.settings.build['ant'] = "1.6.5"
但 Buildr 尝试使用工件组 org.apache.ant
下载,而 ant 1.6.5
使用组 ant
。
遇到这样的情况应该如何解决呢?
When using Apache Buildr, the project pulls in ant 1.6.5
as a dependency. It seems that when testing the project, Buildr uses ant 1.8.0
and puts it on the classpath. JUnit complains about multiple ant versions.
It is possible to set
Buildr.settings.build['ant'] = "1.6.5"
but Buildr tries to download with artifact group org.apache.ant
, while ant 1.6.5
uses group ant
.
How should one resolve such situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在我做了:
For now I did with:
您可以从依赖项中删除 1.6.5 吗?
喜欢
You could remove 1.6.5 from dependencies?
Like