如何将 websphere 管理 jar 添加到 Hudson 的类路径?
我尝试使用 Hudson 的 Deploy Websphere 插件将我的工件部署到远程 websphere。
从插件 文档 中,我需要执行以下操作:
以下 WAS JAR 文件需要放入 Hudson 类路径或放入 %project.basedir%/WEB-INF/lib/ 目录中。可以从 WAS 服务器安装的 %WAS_HOME%/runtimes/ 目录复制这些 JAR 文件。
- com.ibm.ws.admin.client_6.1.0
- com.ibm.ws.webservices.thinclient_6.1.0
我已将 hudson 安装为 Windows 服务,如何将这些 jar 添加到 hudson 的类路径中?
I try to use Hudson's Deploy Websphere plug-in to deploy my artifacts to remote websphere.
From the plug-in documentation, I need to do this:
The following WAS JAR files need to be placed into the Hudson class path or dropped into the %project.basedir%/WEB-INF/lib/ directory. These JAR files can be copied from the %WAS_HOME%/runtimes/ directory of your WAS server installation.
- com.ibm.ws.admin.client_6.1.0
- com.ibm.ws.webservices.thinclient_6.1.0
I have installed hudson as a windows service, how can I add these jars to hudson's class path?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 Hudson 的文档:
因此,您似乎可以使用 hudson.xml 文件来操作服务的 JVM 类路径。
华泰
According to Hudson's documentation:
So, it appears you can manipulate the service's JVM classpath using the hudson.xml file.
HTH