WAS 部署中的 Ivy 库
我在 RAD 里有一场战争。我正在使用 Ivy 来管理我的项目依赖项。我唯一的问题是,当我通过 RAD 将 Ear 部署到 WAS 的开发实例时,部署没有看到任何来自 ivy 的依赖库。如何配置项目,以便在将项目部署到 websphere 时显示 ivy 依赖项?
I have a war attached to an ear in RAD. I'm using Ivy to manage my project dependencies. My only problem is that when I deploy the ear to my dev instance of WAS through RAD, the deployment doesn't see any dependent libraries from ivy. How can I configure the project so that the ivy dependencies show up when the project is deployed to websphere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ivy 在构建 WAR 和 EAR 文件时使用。
例如:
retrieve 命令用于填充 lib 目录,其内容被复制到 WAR 中。 (lib 标签确保 jar 被放置在 WAR 内的 WEB-INF/lib 下)
更新
如果您只是想,可以从命令行运行 ivy 检索任务将依赖项下载到本地目录:
Ivy is used when building the WAR and EAR files.
For example:
The retrieve command is used to populate a lib directory whose contents are copied into the WAR. (The lib tag ensures the jars are placed under WEB-INF/lib within the WAR)
Update
The ivy retrieve task can be run from the command line, if you just want to download dependencies to a local directory: