diff options
| author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2024-12-22 18:42:01 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:25:13 +0100 |
| commit | 594d95260ef5384590a2623cd40dc34bf92f6071 (patch) | |
| tree | 06110eeb80559423eb74e5666573ed18872ecdda /gnu/packages | |
| parent | 072eae92600b0c992fd31c6fcb85628d3f6475b6 (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')
| -rw-r--r-- | gnu/packages/java.scm | 27 |
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.") ;; with classpath exception (license license:epl2.0))) +(define-public java-jakarta-activation-api + (package + (name "java-jakarta-activation-api") + (version "2.1.4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jakartaee/jaf-api") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "125bf475cb0mdyhn1lj3c8gbwngbd28x10vnknq86zrc1vq4m6gx")))) + (build-system ant-build-system) + (arguments + `(#:jar-name "jakarta-activation-api.jar" + #:source-dir "api/src/main/java" + #:tests? #f ;; has no tests + #:jdk ,openjdk11)) + (home-page "https://github.com/jakartaee/jaf-api") + (synopsis "Collection of Java activation") + (description "Jakarta Activation lets you take advantage of standard +services to: determine the type of arbitrary piece of data; encapsulate access +to it; discover the operations available on it; and instantiate the +appropriate bean to perform the operation(s).") + (license license:bsd-3))) + (define-public java-jakarta-annotations-api (package (name "java-jakarta-annotations-api") |
