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 /sonar | |
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 'sonar')
-rw-r--r-- | sonar/pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sonar/pom.xml b/sonar/pom.xml index 1022d2107b..50a1b3fb05 100644 --- a/sonar/pom.xml +++ b/sonar/pom.xml @@ -65,6 +65,7 @@ <!-- define some of the third-party or plugin-versions globally to use the same in all modules --> <xmlbeans.version>2.6.0</xmlbeans.version> <junit.version>4.12</junit.version> + <xmlunit.version>2.5.1</xmlunit.version> <mockito.version>2.13.0</mockito.version> <maven.plugin.resources.version>3.0.1</maven.plugin.resources.version> <maven.plugin.jar.version>3.0.1</maven.plugin.jar.version> @@ -138,6 +139,12 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.xmlunit</groupId> + <artifactId>xmlunit-core</artifactId> + <version>${xmlunit.version}</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> |