Skip to content

Commit 9c46dac

Browse files
Andrew Cohensnicoll
authored andcommitted
Add XMLUnit to spring-boot-starter-test
Closes gh-9709
1 parent 61c6662 commit 9c46dac

File tree

2 files changed

+10
-0
lines changed
  • spring-boot-dependencies
  • spring-boot-starters/spring-boot-starter-test

2 files changed

+10
-0
lines changed

spring-boot-dependencies/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@
197197
<webjars-locator.version>0.32-1</webjars-locator.version>
198198
<wsdl4j.version>1.6.3</wsdl4j.version>
199199
<xml-apis.version>1.4.01</xml-apis.version>
200+
<xmlunit.version>2.3.0</xmlunit.version>
200201
<!-- Plugin versions -->
201202
<build-helper-maven-plugin.version>3.0.0</build-helper-maven-plugin.version>
202203
<exec-maven-plugin.version>1.5.0</exec-maven-plugin.version>
@@ -2517,6 +2518,11 @@
25172518
<artifactId>webjars-locator</artifactId>
25182519
<version>${webjars-locator.version}</version>
25192520
</dependency>
2521+
<dependency>
2522+
<groupId>org.xmlunit</groupId>
2523+
<artifactId>xmlunit-core</artifactId>
2524+
<version>${xmlunit.version}</version>
2525+
</dependency>
25202526
<dependency>
25212527
<groupId>org.yaml</groupId>
25222528
<artifactId>snakeyaml</artifactId>

spring-boot-starters/spring-boot-starter-test/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@
7373
<groupId>org.springframework</groupId>
7474
<artifactId>spring-test</artifactId>
7575
</dependency>
76+
<dependency>
77+
<groupId>org.xmlunit</groupId>
78+
<artifactId>xmlunit-core</artifactId>
79+
</dependency>
7680
</dependencies>
7781
<build>
7882
<plugins>

0 commit comments

Comments
 (0)