且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

ivy 或ivyDE 是否可以在Eclipse 中自动将相关jar 添加到JAVA 构建路径库中?

更新时间:2023-11-16 17:32:34

如果你使用 IvyEclipse 插件.如果已安装,则需要将 IVY 运行时添加到项目的构建路径中.这可以通过库"选项卡下的项目属性"->Java 构建路径",选择添加库",然后选择IvyDE 托管依赖项"来完成.

It would if you use the Ivy Eclipse plugin. If you have it installed, you'll need to add the IVY runtime to the build path of the project. This can be done via Project Properties->Java Build Path under the Libraries tab, select Add Library then select IvyDE Managed Dependencies.

完成后,Ivy 解析会将 ivy.xml 中指定的所有 jar 添加到项目的构建路径中.

Once that's done, an Ivy resolve will add all the jars specified in ivy.xml to the project's build path.