summaryrefslogtreecommitdiff
path: root/gnu/packages/java.scm
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2024-12-22 18:42:01 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:25:13 +0100
commit594d95260ef5384590a2623cd40dc34bf92f6071 (patch)
tree06110eeb80559423eb74e5666573ed18872ecdda /gnu/packages/java.scm
parent072eae92600b0c992fd31c6fcb85628d3f6475b6 (diff)
gnu: Add java-jakarta-activation-api.
* gnu/packages/java.scm (java-jakarta-activation-api): New variable. Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/java.scm')
-rw-r--r--gnu/packages/java.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 07adcb2429d..8273b55fbbe 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -14153,6 +14153,33 @@ Processing specification.")
14153 ;; with classpath exception 14153 ;; with classpath exception
14154 (license license:epl2.0))) 14154 (license license:epl2.0)))
14155 14155
14156(define-public java-jakarta-activation-api
14157 (package
14158 (name "java-jakarta-activation-api")
14159 (version "2.1.4")
14160 (source (origin
14161 (method git-fetch)
14162 (uri (git-reference
14163 (url "https://github.com/jakartaee/jaf-api")
14164 (commit version)))
14165 (file-name (git-file-name name version))
14166 (sha256
14167 (base32
14168 "125bf475cb0mdyhn1lj3c8gbwngbd28x10vnknq86zrc1vq4m6gx"))))
14169 (build-system ant-build-system)
14170 (arguments
14171 `(#:jar-name "jakarta-activation-api.jar"
14172 #:source-dir "api/src/main/java"
14173 #:tests? #f ;; has no tests
14174 #:jdk ,openjdk11))
14175 (home-page "https://github.com/jakartaee/jaf-api")
14176 (synopsis "Collection of Java activation")
14177 (description "Jakarta Activation lets you take advantage of standard
14178services to: determine the type of arbitrary piece of data; encapsulate access
14179to it; discover the operations available on it; and instantiate the
14180appropriate bean to perform the operation(s).")
14181 (license license:bsd-3)))
14182
14156(define-public java-jakarta-annotations-api 14183(define-public java-jakarta-annotations-api
14157 (package 14184 (package
14158 (name "java-jakarta-annotations-api") 14185 (name "java-jakarta-annotations-api")