如何使用默认安装的额外插件打包 hudson.war
我想知道是否可以使用一些额外的插件重新打包基本的 hudson.war ,以便最终用户默认安装它们。如果是这样,执行此操作的过程是什么?
我启动了 hudson.war,然后手动安装所需的插件。有没有办法扭转这个过程,并使用后续文件创建一个新的 hudson.war ,以便默认安装这些插件?
谢谢你, -麦金利峰
I am wondering if it is possible to re-package the basic hudson.war with some extra plugins so they are installed by default for the end user. If so, what is the process to do this?
I've got a hudson.war which I start up, and then I manually install the plugins that are needed. Is there a way to reverse this process, and create a new hudson.war with the consequent files so that these plugins are installed by default?
Thank you,
-Denali
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
理论上,您可以通过将
.hpi
文件添加到 hudson.war 的WEB-INF/plugins
文件夹中来实现此目的。但是,我认为这不是一个干净的方法。您是否考虑过使用 Hudson cli 以某种方式实现自动化?
例如。
Theoretically, you could achieve this by adding your
.hpi
file into theWEB-INF/plugins
folder of the hudson.war.However, I don't think this is a clean approach. Have you considered automating it somehow by using the Hudson cli for instance?
Eg.