3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: maven-jar-plugin: Don't use unstable tarball.

* gnu/packages/maven.scm (maven-jar-plugin)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner 2020-09-14 22:28:14 +03:00
parent 819ead3592
commit 05cd8837eb
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3620,13 +3620,14 @@ reports in two different file formats, plain text and xml.")))
(name "maven-jar-plugin")
(version "3.2.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/apache/"
"maven-jar-plugin/archive/"
"maven-jar-plugin-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/apache/maven-jar-plugin")
(commit (string-append "maven-jar-plugin-" version))))
(file-name (git-file-name name version))
(sha256
(base32
"032042n3kfb4g5jf6khzxywn22xfy3jpx57lkq88xsv0lwx9np96"))))
"04y2rlmcabmc55ljqlkgbb5xx94a59cz1dvrnpfj1vzz024pqkyg"))))
(build-system ant-build-system)
(arguments
`(#:jar-name "maven-jar-plugin.jar"