是否可以将Ant build.xml
指向M2 Repo'Jar Files'?
答案 0 :(得分:2)
简短的回答是肯定的。您可以按如下方式创建ANT路径:
<path id="m2.path">
<fileset dir="${user.home}/.m2/repository" includes="**/*.jar"/>
</path>
<javac .. classpathref="m2.path" ..>
..
但我建议您考虑在ANT构建过程中实现依赖关系管理,而不是依赖外部工具。