[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31604] [PATCH 4/8] gnu: Add java-commons-jxpath.
From: |
Julien Lepiller |
Subject: |
[bug#31604] [PATCH 4/8] gnu: Add java-commons-jxpath. |
Date: |
Sat, 26 May 2018 14:45:46 +0200 |
* gnu/packages/java.scm (java-commons-jxpath): New variable.
---
gnu/packages/java.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 4aef4befa..e205cccd6 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -4263,6 +4263,37 @@ from within Java, as well as an object registry that
exposes Java objects to
these scripting language engines.")
(license license:asl2.0)))
+(define-public java-commons-jxpath
+ (package
+ (name "java-commons-jxpath")
+ (version "1.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://apache/commons/jxpath/source/"
+ "commons-jxpath-" version "-src.tar.gz"))
+ (sha256
+ (base32
+ "1rpgg31ayn9fwr4bfi2i1ij0npcg79ad2fv0w9hacvawsyc42cfs"))))
+ (build-system ant-build-system)
+ (arguments
+ `(#:jar-name "commons-jxpath.jar"
+ ;; tests require more dependencies, including mockrunner which depends
on old software
+ #:tests? #f
+ #:source-dir "src/java"))
+ (inputs
+ `(("java-tomcat" ,java-tomcat)
+ ("java-jdom" ,java-jdom)
+ ("java-commons-beanutils" ,java-commons-beanutils)))
+ (native-inputs
+ `(("java-junit" ,java-junit)))
+ (home-page "http://commons.apache.org/jxpath/")
+ (synopsis "Simple interpreter of an expression language called XPath.")
+ (description "The org.apache.commons.jxpath package defines a simple
+interpreter of an expression language called XPath. JXPath applies XPath
+expressions to graphs of objects of all kinds: JavaBeans, Maps, Servlet
+contexts, DOM etc, including mixtures thereof.")
+ (license license:asl2.0)))
+
(define-public java-jsr250
(package
(name "java-jsr250")
--
2.17.0
- [bug#31604] [PATCH] Some java packages, Julien Lepiller, 2018/05/26
- [bug#31604] [PATCH 1/8] gnu: Add java-jsr250., Julien Lepiller, 2018/05/26
- [bug#31604] [PATCH 4/8] gnu: Add java-commons-jxpath.,
Julien Lepiller <=
- [bug#31604] [PATCH 5/8] gnu: Add java-commons-compiler., Julien Lepiller, 2018/05/26
- [bug#31604] [PATCH 2/8] gnu: Add java-eclipse-sisu-inject., Julien Lepiller, 2018/05/26
- [bug#31604] [PATCH 6/8] gnu: Add java-janino., Julien Lepiller, 2018/05/26
- [bug#31604] [PATCH 7/8] gnu: Add java-logback-core., Julien Lepiller, 2018/05/26
- [bug#31604] [PATCH 3/8] gnu: Add java-eclipse-sisu-plexus., Julien Lepiller, 2018/05/26
- [bug#31604] [PATCH 8/8] gnu: Add java-logback-classic., Julien Lepiller, 2018/05/26
- [bug#31604] [PATCH] Some java packages, Roel Janssen, 2018/05/27
- bug#31604: [PATCH] Some java packages, Julien Lepiller, 2018/05/27