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") (name "maven-resources-plugin")
(version "3.1.0") (version "3.1.0")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/apache/" (uri (git-reference
"maven-resources-plugin/archive/" (url "https://github.com/apache/maven-resources-plugin")
"maven-resources-plugin-" version ".tar.gz")) (commit (string-append "maven-resources-plugin-" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1f5gnjg2xmqfxml6k0ydyd1sxxwzgnb24qn6avcc4mijwd8a84pl")))) "090k5j2y7ak54czfjjg3v7pdmdlgd96fbs91d1fd3vslm9zzndg8"))))
(build-system ant-build-system) (build-system ant-build-system)
(arguments (arguments
`(#:jar-name "maven-resources-plugin.jar" `(#:jar-name "maven-resources-plugin.jar"