me
/
guix
Archived
1
0
Fork 0

gnu: Add java-xmlunit-legacy.

* gnu/packages/java.scm (java-xmlunit-legacy): New variable.
master
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
1 changed files with 14 additions and 0 deletions

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 an XML Schema, assert the values of XPath queries or compare XML documents
against expected outcomes.") against expected outcomes.")
(license license:asl2.0))) (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)))))