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

* gnu/packages/maven.scm (maven-resources-plugin)[source]: Download
using git-fetch.
This commit is contained in:
Efraim Flashner 2020-09-14 22:32:59 +03:00
parent 05cd8837eb
commit 7cd50ad7fa
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2944,13 +2944,14 @@ (define-public maven-resources-plugin
(name "maven-resources-plugin")
(version "3.1.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/apache/"
"maven-resources-plugin/archive/"
"maven-resources-plugin-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/apache/maven-resources-plugin")
(commit (string-append "maven-resources-plugin-" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1f5gnjg2xmqfxml6k0ydyd1sxxwzgnb24qn6avcc4mijwd8a84pl"))))
"090k5j2y7ak54czfjjg3v7pdmdlgd96fbs91d1fd3vslm9zzndg8"))))
(build-system ant-build-system)
(arguments
`(#:jar-name "maven-resources-plugin.jar"