我的build.xml
:
<target name="init" depends="init-ivy">
...
<ivy:cachepath
inline="true"
module="jersey-container-servlet"
organisation="org.glassfish.jersey.containers"
pathid="jersey.classpath"
revision="2.23.2" />
...
</target>
此任务在必要时下载常春藤(init-ivy
实际上这样做),然后调用常春藤下载依赖项。它将jersey.classpath
设置为结果。
现在我的build
任务取决于init
任务。因此,每次构建时,都会检查是否需要安装依赖项。我希望每次都避免检查依赖项,并将build
与init
分开。但是init
设置jersey.classpath
和build
使用它。
有没有办法从常春藤获取jersey.classpath
而不要求它检查依赖关系?在这种情况下,不检查依赖关系是一个好习惯吗?
答案 0 :(得分:3)
正如本回答中所解释的,常春藤每次运行都不会下载罐子。它在“〜/ .ivy2 / cache”下将它们本地缓存:
其次,你在内联模式下使用常春藤,大概是为了避免创建ivy file?常春藤cachepath被归类为post resolve任务,这意味着它将在后台自动调用resolve任务。内联模式的作用是告诉ivy每次执行一个新的解决方案,如果你有多个类路径需要管理,那就太浪费了。
最后您是否考虑过使用常春藤文件?对resolve任务的单次调用可以通过所有项目的依赖项工作,在本地缓存此信息,然后确定是否需要下载文件。我建议始终解决依赖关系。它的成本并不高,而且构建之间的内容可能会发生变化(例如,如果您使用的是动态依赖项或Maven快照)。
以下是常春藤的标准Ant目标:
<available classname="org.apache.ivy.Main" property="ivy.installed"/>
<target name="resolve" depends="install-ivy">
<ivy:resolve/>
<ivy:report todir='${ivy.reports.dir}' graph='false' xml='false'/>
<ivy:cachepath pathid="compile.path" conf="compile"/>
<ivy:cachepath pathid="runtime.path" conf="runtime"/>
<ivy:cachepath pathid="test.path" conf="test"/>
</target>
<target name="install-ivy" unless="ivy.installed">
<mkdir dir="${user.home}/.ant/lib"/>
<get dest="${user.home}/.ant/lib/ivy.jar" src="http://search.maven.org/remotecontent?filepath=org/apache/ivy/ivy/2.4.0/ivy-2.4.0.jar"/>
<fail message="Ivy has been installed. Run the build again"/>
</target>
注意: