bndtools:如何获取jar文件或插件的最新版本

时间:2016-12-31 18:52:42

标签: ant osgi osgi-bundle bndtools

我是bndtools的新手。我想知道是否有任何方法可以检索我的jar文件的最新版本?我的lib文件夹有很多JAR版本(My-Api-1.0.50,My-Api-1.0.85,My-Api-1.0.90)?

我设法通过使用ant来解决依赖关系。我的JAR文件保存在lib文件夹中。我想在我的bnb.bnb中使用它。但我需要使用最新版本。

而不是:

-buildpath:     lib/My-Api-1.0.90.jar;version=file

我想要类似的东西或替代解决方案:

-buildpath:     lib/My-Api-[**latestVertion**].jar;version=file

请指教?谢谢

1 个答案:

答案 0 :(得分:1)

我通过以下方式解决了这个问题:

<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