Ant标准任务
Maven有相当标准化的项目结构和用于编译和测试的标准插件。 Ant 有什么普遍的东西吗?
到目前为止,我发现了以下项目:
但我不确定这些是否广泛存在并且将来可能会得到维护。有人有他们的经验吗?
Maven has a fairly standardized project structure and standard plugins for compilation and testing. Is there something widespread for Ant?
I found the following projects so far:
But I'm not sure whether these are widespread and are likely to be maintained in the future. Does someone have experience with them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认识编写 Ant 脚本库的人。他没有任何要停下来的意思。对我来说,蚂蚁金服的灵活性使得这样的事情很难成功。恕我直言,Ant-contrib 只会让情况变得更糟,因为它允许人们破坏该工具的模型。遗憾的是,如果你使用得当,Ant 会非常强大。
I know the guy who wrote Ant Script Library. He doesn't have any intention of stopping. To me, Ant's flexibility makes it hard for things like this to succeed. Ant-contrib only makes it worse IMHO as it allows people to break the model of the tool. Shame, as Ant is phenomenally powerful if you use it properly.
我从来没有听说过他们。我最近参与了 2 个重要的 Java 项目。我们的蚂蚁任务很简单,而且是自行开发的。每次有人开始一个新项目时,他们都会复制 ant 文件,并且大多只是更改顶部的一些常量。
I have never heard of them. I've been on 2 significant Java projects lately. Our ant tasks were simple and home-grown. Each time someone starts a new project they make a copy of the ant file and mostly just change some constants at the top.