3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add java-xmlunit-legacy.

* gnu/packages/java.scm (java-xmlunit-legacy): New variable.
This commit is contained in:
Julien Lepiller 2018-02-10 18:47:34 +01:00
parent 7ac4f054e7
commit 73a1f10a80
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -8334,3 +8334,17 @@ emit is the one you want to create. It provides helpers to validate against
an XML Schema, assert the values of XPath queries or compare XML documents
against expected outcomes.")
(license license:asl2.0)))
(define-public java-xmlunit-legacy
(package
(inherit java-xmlunit)
(name "java-xmlunit-legacy")
(arguments
`(#:jar-name "java-xmlunit-legacy.jar"
#:source-dir "xmlunit-legacy/src/main/java"
#:test-dir "xmlunit-legacy/src/test"))
(inputs
`(("java-xmlunit" ,java-xmlunit)
("java-junit" ,java-junit)))
(native-inputs
`(("java-mockito-1" ,java-mockito-1)))))