mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add maven-plugin-annotations.
* gnu/packages/maven.scm (maven-plugin-annotations): New variable.
This commit is contained in:
parent
7a42f05869
commit
a59d5f3542
1 changed files with 24 additions and 0 deletions
|
@ -230,6 +230,30 @@ (define-public maven-shared-utils
|
||||||
replacement with improvements.")
|
replacement with improvements.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public maven-plugin-annotations
|
||||||
|
(package
|
||||||
|
(name "maven-plugin-annotations")
|
||||||
|
(version "3.5")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://archive.apache.org/dist/maven/"
|
||||||
|
"plugin-tools/maven-plugin-tools-" version
|
||||||
|
"-source-release.zip"))
|
||||||
|
(sha256 (base32 "1ryqhs62j5pas93brhf5dsnvp99hxbvssf681yj5rk3r9h24hqm2"))))
|
||||||
|
(build-system ant-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:jar-name "maven-plugin-annotations.jar"
|
||||||
|
#:source-dir "maven-plugin-annotations/src/main/java"
|
||||||
|
#:tests? #f))
|
||||||
|
(inputs
|
||||||
|
`(("maven-artifact" ,maven-artifact)))
|
||||||
|
(native-inputs
|
||||||
|
`(("unzip" ,unzip)))
|
||||||
|
(home-page "https://maven.apache.org/plugin-tools/maven-plugin-annotations/")
|
||||||
|
(synopsis "Java 5 annotations to use in Mojos")
|
||||||
|
(description "This package contains Java 5 annotations for use in Mojos.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public maven-artifact
|
(define-public maven-artifact
|
||||||
(package
|
(package
|
||||||
(name "maven-artifact")
|
(name "maven-artifact")
|
||||||
|
|
Loading…
Reference in a new issue