Ant的可选任务在CentOS上不可用
当我在 CentOS 上运行 ant 来构建 java 项目时,收到错误:
Could not create task or type of type: replaceregexp
ant -diagnostics 显示可选任务不可用。如何为 ant 安装可选任务?
Ant 是从 CentOS 软件包安装的。
When I run ant on CentOS to build java project I receive an error:
Could not create task or type of type: replaceregexp
ant -diagnostics shows that optional tasks are not available. How I can install optional tasks for ant?
Ant is installed from CentOS package.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对我有用:
Works for me:
运行以下命令,下载与 ANT 可选任务相关的 jar:
有关完整说明,
请参阅 ANT 手册文档。
Run the following command, to download the jars associated with ANT's optional tasks:
For a full explanation,
see the ANT Manual documentation.
它将安装所需的可选任务(jar)。
人们可以快速搜索以获得其他 ant 相关软件包的列表。
It will install the required optional task (jar).
One can do a quick search to get a list of other ant related packages.
尝试
百胜列表“蚂蚁*”
查看可用的 ant 软件包。
就我而言
yum install ant-antlr.x86_64 有效。
try
yum list 'ant*'
to see available ant packages.
In my case
yum install ant-antlr.x86_64 worked.