我是bndtools的新手。我想知道是否有任何方法可以检索最新版本的jar文件?我的库文件夹有很多 JAR 版本(My-Api-1.0.50、My-Api-1.0.85、My-Api-1.0.90)?
我设法通过使用蚂蚁解决了依赖关系。我的 JAR 文件保存在 lib 文件夹中。我想在我的bnb.bnb中使用它。但我需要使用最新版本。
而不是:
-buildpath: lib/My-Api-1.0.90.jar;version=file
我想要这样的东西或替代解决方案:
-buildpath: lib/My-Api-[**latestVertion**].jar;version=file
请指教??谢谢
我通过以下方式解决了这个问题:
-
添加 自动安装 Ivy 插件,仅在 Ant 构建脚本中使用 Ivy http://ant.apache.org/ivy/history/2.2.0/install.html
-
重命名 Jar rerived (MyApi-latest.jar)
<move tofile="lib/MyApi-latest.jar" force="true"> <fileset dir="lib"> <include name="My-Api*.jar" /> <exclude name="My-Api-latest.jar"/> </fileset> </move>
- 在我的bnd.bnd
-buildpath: lib/My-Api-latest.jar;version=file