GNU bug report logs -
#31631
[PATCH] Some maven packages
Previous Next
Reported by: Julien Lepiller <julien <at> lepiller.eu>
Date: Mon, 28 May 2018 20:50:01 UTC
Severity: normal
Tags: patch
Done: Julien Lepiller <julien <at> lepiller.eu>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
* gnu/packages/maven.scm (maven-settings-builder): New variable.
---
gnu/packages/maven.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm
index bb948e72c..64ee672be 100644
--- a/gnu/packages/maven.scm
+++ b/gnu/packages/maven.scm
@@ -292,3 +292,35 @@ setting, toolchains)")))
(description "Apache Maven is a software project management and comprehension
tool. This package contains strictly the model for Maven settings, that is
simply plain java objects.")))
+
+(define-public maven-settings-builder
+ (package
+ (inherit maven-artifact)
+ (name "maven-settings-builder")
+ (arguments
+ `(#:jar-name "maven-settings-builder.jar"
+ #:source-dir "maven-settings-builder/src/main/java"
+ #:jdk ,icedtea-8
+ #:test-dir "maven-settings-builder/src/test"
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'build 'generate-components.xml
+ (lambda _
+ (mkdir-p "build/classes/META-INF/plexus")
+ (chmod "components.sh" #o755)
+ (invoke "./components.sh" "maven-settings-builder/src/main/java"
+ "build/classes/META-INF/plexus/components.xml")
+ #t)))))
+ (inputs
+ `(("java-plexus-utils" ,java-plexus-utils)
+ ("java-plexus-component-annotations" ,java-plexus-component-annotations)
+ ("java-plexus-interpolation" ,java-plexus-interpolation)
+ ("java-plexus-sec-dispatcher" ,java-plexus-sec-dispatcher)
+ ("maven-builder-support" ,maven-builder-support)
+ ("maven-settings" ,maven-settings)
+ ("java-commons-lang3" ,java-commons-lang3)))
+ (native-inputs
+ `(("java-junit" ,java-junit)))
+ (description "Apache Maven is a software project management and comprehension
+tool. This package contains the effective model builder, with profile activation,
+inheritance, interpolation, @dots{}")))
--
2.17.0
This bug report was last modified 6 years and 349 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.