gnu: maven-compiler-plugin: Don't use unstable tarball.
* gnu/packages/maven.scm (maven-compiler-plugin)[source]: Download using git-fetch.
This commit is contained in:
parent
7cd50ad7fa
commit
276ab588a8
1 changed files with 6 additions and 5 deletions
|
@ -3053,13 +3053,14 @@ components for supporting incremental build functionality in maven plugins.")
|
||||||
(name "maven-compiler-plugin")
|
(name "maven-compiler-plugin")
|
||||||
(version "3.8.1")
|
(version "3.8.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/apache/"
|
(uri (git-reference
|
||||||
"maven-compiler-plugin/archive/"
|
(url "https://github.com/apache/maven-compiler-plugin")
|
||||||
"maven-compiler-plugin-" version ".tar.gz"))
|
(commit (string-append "maven-compiler-plugin-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"018d9qwc4cd6k7a8kvhvxjmzbzd2ifdf7m36wqjfq42010js1mv1"))))
|
"0jkbq02vykd09ws8k9bzqxv6fjrpmir8gcxydbmj05kkhl242bma"))))
|
||||||
(build-system ant-build-system)
|
(build-system ant-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:jar-name "maven-compiler-plugin.jar"
|
`(#:jar-name "maven-compiler-plugin.jar"
|
||||||
|
|
Reference in a new issue