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

gnu: Add java-plexus-component-annotations.

* gnu/packages/java.scm (java-plexus-component-annotations): New
variable.
This commit is contained in:
Julien Lepiller 2018-02-10 21:53:53 +01:00
parent 3422e10ede
commit 3214afabff
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -2660,6 +2660,20 @@ archives (jar).")
`(("archiver" ,java-plexus-archiver)
("hamcrest" ,java-hamcrest-core)))))
(define-public java-plexus-component-annotations
(package
(inherit java-plexus-container-default)
(name "java-plexus-component-annotations")
(arguments
`(#:jar-name "plexus-component-annotations.jar"
#:source-dir "plexus-component-annotations/src/main/java"
#:tests? #f)); no tests
(inputs '())
(native-inputs '())
(synopsis "Plexus descriptors generator")
(description "This package is a Maven plugin to generate Plexus descriptors
from source tags and class annotations.")))
(define-public java-asm
(package
(name "java-asm")