gpt4 book ai didi

java - 如何获得 Ivy :cachepath location without checking if dependencies downloaded

转载 作者:行者123 更新时间:2023-11-30 06:52:14 24 4
gpt4 key购买 nike

我的 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>

此任务会在必要时下载 ivy(init-ivy 实际上会这样做),然后调用 ivy 来下载依赖项。它将 jersey.classpath 设置为结果。

现在我的build 任务依赖于init 任务。所以每次我构建时,它都会检查是否需要安装依赖项。我想避免每次都检查依赖关系,并将 buildinit 分开。但是 init 设置 jersey.classpath 并且 build 使用它。

有没有办法从 ivy 获取 jersey.classpath 而不要求它检查依赖关系?在这种情况下不检查依赖项甚至是一个好习惯吗?

最佳答案

如本回答中所述,ivy 不会在每次运行时都下载 jar。它在“~/.ivy2/cache”下本地缓存它们:

其次,您在内联模式下使用 ivy,大概是为了避免创建 ivy file ? Ivy cachepath分类为 post resolve任务,这意味着它将自动调用 resolve任务,在后台。内联模式所做的是告诉 ivy 每次执行新的解析,如果您要管理多个类路径,这是一种浪费。

最后你考虑过使用 ivy 文件吗?一次调用 resolve task 可以处理项目的所有依赖项,在本地缓存此信息,然后确定是否需要下载文件。我建议始终解决依赖关系。它的成本不高,并且构建之间可能发生了变化(例如,如果您使用的是动态依赖项或 Maven 快照)。

这是我的 Ivy 标准 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>

注意事项:

  • 名为“resolve”的单个目标调用 ivy 来管理我的项目类路径。它还会生成有用的文档报告
  • cachepath任务正在使用 Ivy configurations对 ivy 文件中的依赖项进行分组或分类。这确实是一种效率魔法,可以在单个解决方案上节省时间。
  • 注意 install-ivy 任务如何进行条件检查以确定是否安装了 ivy。由于复杂性,此技巧对于项目的其余依赖项不可行。我的建议是确保 Ivy 存在,然后用它来管理其他一切。 (在引擎盖下,它会尽最大努力提高效率)。我真的不明白为什么 Apache Ant 不捆绑 ivy jar。

关于java - 如何获得 Ivy :cachepath location without checking if dependencies downloaded,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39313778/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com