用于创建 IVY 存储库的 JAR 选择
为了制作存储库,当我指定依赖项的修订号时:我可以通过动态修订将其定义为:
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那确实只获取最新的jar。我运行了你的代码片段,它只下载了 3.0.6(当然还有依赖项)。
顺便说一句,您可能会发现这样写更清晰:
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:
请尝试以下操作:
Try the following: