guix_mirror_bot pushed a commit to branch next-master
in repository guix.
commit ca55e8152aeb9ca0b390613343e42e7b26dd6c1d
Author: Hartmut Goebel <[email protected]>
AuthorDate: Sun Dec 22 18:45:44 2024 +0100
gnu: Add java-axiom-xml-utils.
* gnu/packages/java-xml.scm (java-axiom-xml-utils): New variable.
Change-Id: I46fea9c4ba83068b6a493fb0e43e6f13381345a6
---
gnu/packages/java-xml.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/java-xml.scm b/gnu/packages/java-xml.scm
index 13b65cacea..2ff423e4d8 100644
--- a/gnu/packages/java-xml.scm
+++ b/gnu/packages/java-xml.scm
@@ -765,3 +765,22 @@ changes of the Plexus fork. It is an implementation of the
XMLPULL V1 API
(description "This package provides utility methods to work with base64
encoded data.")
(license license:asl2.0)))
+
+(define-public java-axiom-xml-utils
+ (package
+ (name "java-axiom-xml-utils")
+ (version %axiom-version)
+ (source axiom-source)
+ (build-system ant-build-system)
+ (arguments
+ `(#:source-dir "components/xml-utils/src/main"
+ #:test-dir "components/xml-utils/src/test"
+ #:tests? #f ;; require too many yet unpackaged packages
+ #:jar-name "axiom-xml-utils.jar"))
+ (native-inputs
+ (list unzip))
+ (home-page "https://ws.apache.org/axiom/")
+ (synopsis "XML utilities for Apache Axiom Weaver")
+ (description "This package provides XML utilities used by Apache Axiom
+Weaver, anyhow not depending on depending on the Axiom API.")
+ (license license:asl2.0)))