Remove pushed xmlunit-matchers
more/packages/java.scm
6214 | 6214 | (description "Modello XSD Plugin generates an XML Schema from the model to | |
6215 | 6215 | be able to validate XML content."))) | |
6216 | 6216 | ||
6217 | - | (define-public java-xmlunit-matchers | |
6218 | - | (package | |
6219 | - | (inherit java-xmlunit) | |
6220 | - | (name "java-xmlunit-matchers") | |
6221 | - | (arguments | |
6222 | - | `(#:jar-name "java-xmlunit-matchers.jar" | |
6223 | - | #:source-dir "xmlunit-matchers/src/main/java" | |
6224 | - | #:test-dir "xmlunit-matchers/src/test" | |
6225 | - | #:test-exclude | |
6226 | - | ;; Cannot open xsd for http://www.xmlunit.org/test-support/Book.xsd | |
6227 | - | (list "**/ValidationMatcherTest.java") | |
6228 | - | #:phases | |
6229 | - | (modify-phases %standard-phases | |
6230 | - | (add-before 'build 'copy-test-class | |
6231 | - | (lambda _ | |
6232 | - | (copy-file "xmlunit-core/src/test/java/org/xmlunit/TestResources.java" | |
6233 | - | "xmlunit-matchers/src/test/java/org/xmlunit/TestResources.java") | |
6234 | - | #t)) | |
6235 | - | (add-before 'build 'fix-test-resources-path | |
6236 | - | (lambda _ | |
6237 | - | (substitute* (find-files "xmlunit-matchers/src/test" ".*.java") | |
6238 | - | (("../test-resources") "test-resources")) | |
6239 | - | #t)) | |
6240 | - | (add-before 'check 'copy-test-resources | |
6241 | - | (lambda* (#:key inputs #:allow-other-keys) | |
6242 | - | (copy-recursively (assoc-ref inputs "resources") "test-resources") | |
6243 | - | #t))))) | |
6244 | - | (inputs | |
6245 | - | `(("java-xmlunit" ,java-xmlunit) | |
6246 | - | ("java-junit" ,java-junit))))) | |
6247 | - | ||
6248 | 6217 | (define-public java-jtidy | |
6249 | 6218 | (package | |
6250 | 6219 | (name "java-jtidy") |