diff options
author | Martin Stockhammer <martin_s@apache.org> | 2020-01-29 23:03:00 +0100 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2020-01-29 23:03:00 +0100 |
commit | 712867584d864d3f7c0ba66ed549342c23b958c3 (patch) | |
tree | 5adac3ab9fc78dc81deea090766f201bfd31e738 /pom.xml | |
parent | 3d7c10958965f7cc5ef6b558c9e5fb0a66855a89 (diff) | |
download | archiva-712867584d864d3f7c0ba66ed549342c23b958c3.tar.gz archiva-712867584d864d3f7c0ba66ed549342c23b958c3.zip |
Switching to new xmlunit version
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -61,6 +61,8 @@ <commons-fileupload.version>1.4</commons-fileupload.version> <commons-lang.version>3.9</commons-lang.version> + <xmlunit.version>2.6.3</xmlunit.version> + <maven3x.version>3.5.4</maven3x.version> <maven.resolver.version>1.1.1</maven.resolver.version> <maven.indexer.version>6.0.1-SNAPSHOT</maven.indexer.version> @@ -1493,10 +1495,18 @@ <dependency> - <groupId>xmlunit</groupId> - <artifactId>xmlunit</artifactId> - <version>1.0</version> + <groupId>org.xmlunit</groupId> + <artifactId>xmlunit-core</artifactId> + <version>${xmlunit.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.xmlunit</groupId> + <artifactId>xmlunit-assertj</artifactId> + <version>${xmlunit.version}</version> + <scope>test</scope> </dependency> + <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> |