mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: Add java-xmlunit-legacy.
* gnu/packages/java.scm (java-xmlunit-legacy): New variable.
This commit is contained in:
parent
7ac4f054e7
commit
73a1f10a80
1 changed files with 14 additions and 0 deletions
|
@ -8334,3 +8334,17 @@ (define-public java-xmlunit
|
||||||
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)))))
|
||||||
|
|
Loading…
Reference in a new issue