gnu: Add java-jdom.

* gnu/packages/java.scm (java-jdom): New variable.
This commit is contained in:
Julien Lepiller 2017-11-05 17:43:59 +01:00
parent 2caf873e86
commit 0b54e190ab
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -7227,3 +7227,28 @@ (define-public java-kafka-clients
;; Either cddl or gpl2 only.
(license (list license:cddl1.1; actually cddl1.1
license:gpl2)))); with classpath exception
(define-public java-jdom
(package
(name "java-jdom")
(version "1.1.3")
(source (origin
(method url-fetch)
(uri (string-append "http://jdom.org/dist/binary/archive/jdom-"
version ".tar.gz"))
(sha256
(base32
"07wdpm3jwwc9q38kmdw40fvbmv6jzjrkrf8m0zqs58f79a672wfl"))))
(build-system ant-build-system)
(arguments
`(#:build-target "package"
#:tests? #f; tests are run as part of the build process
#:phases
(modify-phases %standard-phases
(replace 'install
(install-jars "build")))))
(home-page "http://jdom.org/")
(synopsis "Access, manipulate, and output XML data")
(description "Java-based solution for accessing, manipulating, and
outputting XML data from Java code.")
(license license:bsd-4)))