[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#75038] [PATCH 05/14] gnu: Add java-jakarta-activation-api.
From: |
Hartmut Goebel |
Subject: |
[bug#75038] [PATCH 05/14] gnu: Add java-jakarta-activation-api. |
Date: |
Sun, 22 Dec 2024 23:51:37 +0100 |
* gnu/packages/java.scm (java-jakarta-activation-api): New variable.
---
gnu/packages/java.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index e7b72eeb0d..3f024116f2 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -14061,6 +14061,33 @@ (define-public java-parsson
;; with classpath exception
(license license:epl2.0)))
+(define-public java-jakarta-activation-api
+ (package
+ (name "java-jakarta-activation-api")
+ (version "2.1.3")
+ (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
+ "13pxpkn25ckp70g6imh4x19hqsy6fk7pr0m7a0bsrmj5xy4ph66d"))))
+ (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")
--
2.41.1
- [bug#75038] [PATCH 01/14] gnu: Add apache-parent-pom-33., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 03/14] gnu: Add java-commons-io-2.18., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 02/14] gnu: Add apache-commons-parent-pom-78., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 04/14] gnu: Add java-mime4j-core., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 06/14] gnu: Add java-axiom-base64-utils., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 05/14] gnu: Add java-jakarta-activation-api.,
Hartmut Goebel <=
- [bug#75038] [PATCH 07/14] gnu: Add java-axiom-xml-utils., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 08/14] gnu: Add java-axiom-core-streams., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 10/14] gnu: Add java-axiom-api., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 09/14] gnu: Add java-axiom-weaver-annotations., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 11/14] gnu: Add java-axiom-core-mixins., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 13/14] gnu: Add java-axiom-impl., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 14/14] gnu: Add java-saxon-he-10., Hartmut Goebel, 2024/12/22
- [bug#75038] [PATCH 12/14] gnu: Add java-axiom-om-mixins., Hartmut Goebel, 2024/12/22