我正在尝试为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中创建工件链接的标准是什么?
答案 0 :(得分:2)
直接链接到资源:
SRC_URI="https://repo1.maven.org/maven2/com/github/moaxcp/${PN}/${PV}/${P}-sources.jar"