[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#35545] [PATCH 13/17] gnu: Add java-jboss-transaction-api-spec.
From: |
Julien Lepiller |
Subject: |
[bug#35545] [PATCH 13/17] gnu: Add java-jboss-transaction-api-spec. |
Date: |
Fri, 3 May 2019 15:01:30 +0200 |
* gnu/packages/java.scm (java-jboss-transaction-api-spec): New variable.
---
gnu/packages/java.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index ede24d130c..3528d3449e 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -11343,3 +11343,32 @@ It's in particular targeted for making it easy to
integrate SVG into Java
games and making it much easier for artists to design 2D game content - from
rich interactive menus to charts and graphcs to complex animations.")
(license license:bsd-2)))
+
+(define-public java-jboss-transaction-api-spec
+ (package
+ (name "java-jboss-transaction-api-spec")
+ (version "1.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/jboss/jboss-transaction-api_spec")
+ (commit "c20742e0a8f1e0447d72d42be981050f3857b3f1")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1xbfq5hvb86izflydxrqqv3k26c1ba2m0ap6m97shqrsdi9by4wy"))))
+ (build-system ant-build-system)
+ (arguments
+ `(#:jar-name "java-jboss-transaction-api_spec.jar"
+ #:source-dir "src/main/java"
+ #:tests? #f)); no tests
+ (inputs
+ `(("java-cdi-api" ,java-cdi-api)
+ ("java-jboss-interceptors-api-spec" ,java-jboss-interceptors-api-spec)))
+ (home-page "https://github.com/jboss/jboss-transaction-api_spec")
+ (synopsis "Generic transaction management API in Java")
+ (description "Java-jboss-transaction-api-spec implements the Transactions
+API. A transaction is a unit of work containing one or more operations
+involving one or more shared resources having ACID (Atomicity, Consistency,
+Isolation and Durability) properties.")
+ (license (list license:gpl2 license:cddl1.0)))); either gpl2 only or cddl.
--
2.21.0
- [bug#35545] [PATCH 08/17] gnu: Add java-openjfx-base., (continued)
- [bug#35545] [PATCH 09/17] gnu: Add java-openjfx-graphics., Julien Lepiller, 2019/05/03
- [bug#35545] [PATCH 11/17] gnu: Add java-jmapviewer., Julien Lepiller, 2019/05/03
- [bug#35545] [PATCH 13/17] gnu: Add java-jboss-transaction-api-spec.,
Julien Lepiller <=
- [bug#35545] [PATCH 02/17] gnu: Add java-jsonp-api., Julien Lepiller, 2019/05/03
- [bug#35545] [PATCH 14/17] gnu: Add java-commons-pool2., Julien Lepiller, 2019/05/03
- [bug#35545] [PATCH 12/17] gnu: Add java-svg-salamander., Julien Lepiller, 2019/05/03
- [bug#35545] [PATCH 10/17] gnu: Add java-openjfx-media., Julien Lepiller, 2019/05/03
- [bug#35545] [PATCH 16/17] gnu: Add java-commons-jcs., Julien Lepiller, 2019/05/03
- [bug#35545] [PATCH 15/17] gnu: Add java-commons-dbcp2., Julien Lepiller, 2019/05/03