roptat pushed a commit to branch master
in repository guix.
commit 3214afabff01f7aae1d4790059a6f40763023711
Author: Julien Lepiller <[email protected]>
Date: Sat Feb 10 21:53:53 2018 +0100
gnu: Add java-plexus-component-annotations.
* gnu/packages/java.scm (java-plexus-component-annotations): New
variable.
---
gnu/packages/java.scm | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 94c806b..5f8f7fd 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -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")