如何从ebuild链接到maven源jar

时间:2015-05-23 00:26:01

标签: java maven gentoo

我正在尝试为gentoo创建一个ebuild。 ebuild应该使用此字符串

下载源代码
SRC_URI="http://search.maven.org/remotecontent?filepath=com/github/moaxcp/${PN}/${PN}/${PV}/${P}-sources.jar"

当我运行ebuild时,url被翻译为

http://search.maven.org/remotecontent?filepath=com/github/moaxcp/recMD5/recMD5/1.0.1/recMD5-1.0.1-sources.jar

链接不正确并返回404。

在maven central中创建工件链接的标准是什么?

1 个答案:

答案 0 :(得分:2)

直接链接到资源:

SRC_URI="https://repo1.maven.org/maven2/com/github/moaxcp/${PN}/${PV}/${P}-sources.jar"