2013-10-03 114 views
1

檢索依賴後,這是我的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定義,從artifactory的或Maven我想補充他們到我的項目類路徑,而無需從項目 - 配置構建路徑手動添加它們,而無需編譯我的類。

任何想法?

回答

0

最後我找到了一個解決方案,我用Apache IvyDE Eclipse插件更新項目的類路徑。