diff options
| author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2024-12-22 18:46:17 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:25:15 +0100 |
| commit | 40ea1290e0cff5c0420165f0a8523293679b4bcc (patch) | |
| tree | 5fe9bb3645db58f5a79c6d69c2ab4e5575fe495c /gnu | |
| parent | a3af62ab56a40ede4285e6891ea93a594246f1d3 (diff) | |
gnu: Add java-axiom-core-streams.
* gnu/packages/java-xml.scm (java-axiom-core-streams): New variable.
Change-Id: Ic803cba163aae609738a6d606eaac30745d76d30
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/java-xml.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/java-xml.scm b/gnu/packages/java-xml.scm index 2ff423e4d84..045308a41ec 100644 --- a/gnu/packages/java-xml.scm +++ b/gnu/packages/java-xml.scm @@ -766,6 +766,28 @@ changes of the Plexus fork. It is an implementation of the XMLPULL V1 API encoded data.") (license license:asl2.0))) +(define-public java-axiom-core-streams + (package + (name "java-axiom-core-streams") + (version %axiom-version) + (source axiom-source) + (build-system ant-build-system) + (arguments + `(#:source-dir "components/core-streams/src/main" + #:test-dir "components/core-streams/src/test" + #:tests? #f ;; require too many yet unpackaged packages + #:jar-name "axiom-core-streams.jar")) + (inputs + (list java-axiom-base64-utils + java-axiom-xml-utils + java-commons-logging-minimal + unzip)) + (home-page "https://ws.apache.org/axiom/") + (synopsis "Stream classes used by Apache Axiom") + (description "This package provides stream classes used by the core or +Apache Axiom.") + (license license:asl2.0))) + (define-public java-axiom-xml-utils (package (name "java-axiom-xml-utils") |
