diff options
author | PJ Fanning <fanningpj@apache.org> | 2018-03-04 12:24:44 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2018-03-04 12:24:44 +0000 |
commit | 57eae58ee50e70b7b54078e07ba470ef8ed7c882 (patch) | |
tree | e8425d7c9992d0cc56cf2633cdd5e8da2a4f32c5 /build.xml | |
parent | 38c698829f8df279b89c7067c5894de5529bddb9 (diff) | |
download | poi-57eae58ee50e70b7b54078e07ba470ef8ed7c882.tar.gz poi-57eae58ee50e70b7b54078e07ba470ef8ed7c882.zip |
use xmlunit for xml diffs in unit tests
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1825810 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -164,6 +164,8 @@ under the License. <property name="main.hamcrest.jar" location="${main.lib}/hamcrest-core-1.3.jar"/> <property name="main.hamcrest.url" value="${repository.m2}/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"/> + <property name="main.xmlunit.jar" location="${main.lib}/xmlunit-core-2.5.1.jar"/> + <property name="main.xmlunit.url" value="${repository.m2}/maven2/org/xmlunit/xmlunit-core/2.5.1/xmlunit-core-2.5.1.jar"/> <property name="main.mockito.jar" location="${main.lib}/mockito-core-2.13.0.jar"/> <property name="main.mockito.url" value="${repository.m2}/maven2/org/mockito/mockito-core/2.13.0/mockito-core-2.13.0.jar"/> <property name="main.byte-buddy.jar" location="${main.lib}/byte-buddy-1.7.9.jar"/> @@ -325,6 +327,7 @@ under the License. <pathelement location="${main.jmh.jar}"/> <pathelement location="${main.jmhAnnotation.jar}"/> <pathelement location="${main.hamcrest.jar}"/> + <pathelement location="${main.xmlunit.jar}"/> <pathelement location="${main.mockito.jar}"/> <pathelement location="${main.byte-buddy.jar}"/> <pathelement location="${main.byte-buddy-agent.jar}"/> @@ -632,6 +635,7 @@ under the License. <available file="${main.jmh.jar}"/> <available file="${main.jmhAnnotation.jar}"/> <available file="${main.hamcrest.jar}"/> + <available file="${main.xmlunit.jar}"/> <available file="${main.mockito.jar}"/> <available file="${main.byte-buddy.jar}"/> <available file="${main.byte-buddy-agent.jar}"/> @@ -667,6 +671,7 @@ under the License. <downloadfile src="${main.jmh.url}" dest="${main.jmh.jar}"/> <downloadfile src="${main.jmhAnnotation.url}" dest="${main.jmhAnnotation.jar}"/> <downloadfile src="${main.hamcrest.url}" dest="${main.hamcrest.jar}"/> + <downloadfile src="${main.xmlunit.url}" dest="${main.xmlunit.jar}"/> <downloadfile src="${main.mockito.url}" dest="${main.mockito.jar}"/> <downloadfile src="${main.byte-buddy.url}" dest="${main.byte-buddy.jar}"/> <downloadfile src="${main.byte-buddy-agent.url}" dest="${main.byte-buddy-agent.jar}"/> |