获取最新版本的工件的版本号(!)

时间:2013-09-19 16:59:26

标签: rest nexus sonatype

对于hubot脚本,我需要确定工件的最新发布版本。 所有工件都部署到一个sonatype nexus,所以我想使用nexus api来做到这一点。

有没有办法让nexus api只返回版本号?

1 个答案:

答案 0 :(得分:0)

如上所述here我可以使用“resolve”函数返回有关我可能想要的工件的所有信息

例如:

https://oss.sonatype.org/service/local/artifact/maven/resolve?r=cometd-snapshots&g=org.cometd.jetty&a=cometd-jetty-client&v=1.0-SNAPSHOT&e=jar

注意:

  • 类型(e)是可选的,默认值为jar
  • 可以获得json结果,但如果出现错误或不存在的工件,结果总是html
  • 支持LATEST和RELEASE版本