如何在ivy中整合版本管理,例如parent-pom?在马文?
我们有很多项目需要使用通用版本号。
使用 Ant/Ivy 执行此操作的最佳实践是什么?您是否只是从 Ant 继承了一堆包含版本号的属性,还是有像 Maven 那样更正式的机制?
We have many projects that need to use common version numbers.
What is best practice for doing this with Ant/Ivy? Do you just inherit a wad of properties from Ant that have the version numbers in them, or is there a more formal mechanism a la Maven?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如您所指出的,我认为这是新的 的问题扩展功能就是为了解决这个问题而设计的。
说实话,我不喜欢 Maven 中的父子模块……但是,就像您一样,有时我想将我的许多模块钉在 Spring 的通用版本上。
我使用的解决方案是在我的共享中定义一组 属性ivysettings 文件。这使我的 ivy 特定属性与我的 ANT 构建属性分开。
As you've pointed out I think this is the problem which the new extends functionality has been designed to solve.
To be completely honest I'm not a fan of parent-child modules in Maven.... However, just like you sometimes I want to nail lots of my modules to a common version of Spring.
The solution I used was to have a set of properties defined in my shared ivysettings file. This keeps my ivy specific properties separate from my ANT build properties.