用于创建 IVY 存储库的 JAR 选择

发布于 2024-12-13 04:18:50 字数 390 浏览 0 评论 0原文

为了制作存储库,当我指定依赖项的修订号时:我可以通过动态修订将其定义为:

[1.0,) 

例如(在 build.xml 中):

<ivy:install settingsRef="basic.settings" 
 organisation="org.springframework" 
 module="spring-beans" revision="[1.0,)"
 overwrite="TRUE"
from="${from.resolver}" to="${to.resolver}" 
transitive="TRUE"/>

它有一种方法,我可以仅获取最新的 jar,而不是从 1.0 开始的所有 jar ?

For making Repository, when i'm specifying the revision number of dependencies: i can define it by dynamic revision as:

[1.0,) 

eg (in build.xml):

<ivy:install settingsRef="basic.settings" 
 organisation="org.springframework" 
 module="spring-beans" revision="[1.0,)"
 overwrite="TRUE"
from="${from.resolver}" to="${to.resolver}" 
transitive="TRUE"/>

It there a way where i can fetch ONLY the latest jar and not all from 1.0 onward?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

过期以后 2024-12-20 04:18:50

确实只获取最新的jar。我运行了你的代码片段,它只下载了 3.0.6(当然还有依赖项)。

顺便说一句,您可能会发现这样写更清晰:

revision="latest.release"

That does fetch only the latest jar. I ran your snippet, and it only downloaded 3.0.6 (and dependencies, of course).

Incidentally, you might find it cleaner to write:

revision="latest.release"
故事与诗 2024-12-20 04:18:50

请尝试以下操作:

<ivy:install  organisation="org.springframework" module="spring-beans" revision="latest.integration" overwrite="TRUE" from="${from.resolver}" to="${to.resolver}" transitive="true"/>

Try the following:

<ivy:install  organisation="org.springframework" module="spring-beans" revision="latest.integration" overwrite="TRUE" from="${from.resolver}" to="${to.resolver}" transitive="true"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文