这是我的build.xml的一部分
<property name="dir.ivy" value="${user.home}/.ivy2" description="Local Ivy Repository" />
<target name="retrieve" depends="clean,init">
<!-- Resolve dependencies -->
<ivy:resolve file="ivy.xml"/>
<ivy:retrieve type="jar" conf="${ivy.configuration}" pattern="${dir.ivy}/[artifact]-[revision].[ext]"/>
<!-- Update classpath -->
???
</target>
在我下载了我的ivy.xml中定义的依赖项之后,我想将它们添加到我的项目类路径中,而不是从项目 - 配置构建路径中手动添加它们而不编译我的类。< / p>
有什么想法吗?