您可以在 Hudson 部署中运行 ant 构建脚本吗?
我们希望能够使用 Hudson 部署我们的项目,但该项目的构建文件会生成一些文件并从其他位置下载包。
是否可以让 Hudson 在部署过程中执行这些任务?
We want to be able to deploy our project using Hudson, but the build file for the project generates some files and downloads packages from other locations.
Is it possible to make Hudson do these tasks as part of a deployment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Hudson (Jenkins) 支持 Ant,所以是的,您可以运行 Ant 脚本中指定的任何部署任务。
Hudson (Jenkins) has support for Ant, so yes, you can run any deployment tasks specified in your Ant scripts.
以下是 Hudson wiki 中相应页面的链接: 构建软件项目
And here is the link to the corresponding page in the hudson wiki: Building A Software Project
您可以使用maven ant插件(http://maven.apache.org/plugins/maven-antrun-plugin/)在hudson中运行ant脚本,而无需配置hudson。这对于手动运行 ant 脚本以及使用 hudson 很有用。
You can use the maven ant plugin (http://maven.apache.org/plugins/maven-antrun-plugin/) to run ant script in hudson without configuring hudson. This is good for running the ant script manuelly as well as using hudson.