Skip to content

Commit 836a09d

Browse files
committed
Upgrade to Woodstox 5.1, XMLUnit 2.6, Gson 2.8.5
1 parent 3eac2dd commit 836a09d

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

spring-core/spring-core.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ dependencies {
8787
optional("io.netty:netty-buffer")
8888
testCompile("io.projectreactor:reactor-test")
8989
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
90-
testCompile("org.xmlunit:xmlunit-matchers:2.5.1")
90+
testCompile("org.xmlunit:xmlunit-matchers:2.6.0")
9191
testCompile("javax.xml.bind:jaxb-api:2.3.0")
92-
testCompile("com.fasterxml.woodstox:woodstox-core:5.0.3") {
92+
testCompile("com.fasterxml.woodstox:woodstox-core:5.1.0") {
9393
exclude group: "stax", module: "stax-api"
9494
}
9595
}

spring-messaging/spring-messaging.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies {
4141
testCompile("org.apache.tomcat.embed:tomcat-embed-websocket:${tomcatVersion}")
4242
testCompile("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
4343
testCompile("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
44-
testCompile("org.xmlunit:xmlunit-matchers:2.5.1")
44+
testCompile("org.xmlunit:xmlunit-matchers:2.6.0")
4545
testRuntime("com.sun.xml.bind:jaxb-core:2.3.0")
4646
testRuntime("com.sun.xml.bind:jaxb-impl:2.3.0")
4747
testRuntime("com.sun.activation:javax.activation:1.2.0")

spring-oxm/spring-oxm.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ dependencies {
117117
}
118118
testCompile(files(genCastor.classesDir).builtBy(genCastor))
119119
testCompile(files(genJaxb.classesDir).builtBy(genJaxb))
120-
testCompile("org.xmlunit:xmlunit-matchers:2.5.1")
120+
testCompile("org.xmlunit:xmlunit-matchers:2.6.0")
121121
testRuntime("xerces:xercesImpl:2.11.0") // for Castor
122122
testRuntime("com.sun.xml.bind:jaxb-core:2.3.0")
123123
testRuntime("com.sun.xml.bind:jaxb-impl:2.3.0")

spring-test/spring-test.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dependencies {
5252
exclude group: "commons-logging", module: "commons-logging"
5353
exclude group: "io.netty", module: "netty"
5454
}
55-
optional("org.xmlunit:xmlunit-matchers:2.5.1")
55+
optional("org.xmlunit:xmlunit-matchers:2.6.0")
5656
optional("org.skyscreamer:jsonassert:1.5.0")
5757
optional("com.jayway.jsonpath:json-path:2.4.0")
5858
optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")

spring-web/spring-web.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ dependencies {
5252
}
5353
optional("commons-fileupload:commons-fileupload:1.3.3")
5454
optional("org.synchronoss.cloud:nio-multipart-parser:1.1.0")
55-
optional("com.fasterxml.woodstox:woodstox-core:5.0.3") { // woodstox before aalto
55+
optional("com.fasterxml.woodstox:woodstox-core:5.1.0") { // woodstox before aalto
5656
exclude group: "stax", module: "stax-api"
5757
}
5858
optional("com.fasterxml:aalto-xml:1.0.0")
5959
optional("com.fasterxml.jackson.core:jackson-databind:${jackson2Version}")
6060
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${jackson2Version}")
6161
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-smile:${jackson2Version}")
6262
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${jackson2Version}")
63-
optional("com.google.code.gson:gson:2.8.4")
63+
optional("com.google.code.gson:gson:2.8.5")
6464
optional("com.google.protobuf:protobuf-java-util:3.5.1")
6565
optional("com.googlecode.protobuf-java-format:protobuf-java-format:1.4")
6666
optional("com.rometools:rome:1.9.0")
@@ -82,7 +82,7 @@ dependencies {
8282
testCompile("com.squareup.okhttp3:mockwebserver:3.10.0")
8383
testCompile("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
8484
testCompile("org.skyscreamer:jsonassert:1.5.0")
85-
testCompile("org.xmlunit:xmlunit-matchers:2.5.1")
85+
testCompile("org.xmlunit:xmlunit-matchers:2.6.0")
8686
testRuntime("com.sun.mail:javax.mail:1.6.1")
8787
testRuntime("com.sun.xml.bind:jaxb-core:2.3.0")
8888
testRuntime("com.sun.xml.bind:jaxb-impl:2.3.0")

spring-webmvc/spring-webmvc.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dependencies {
7070
exclude group: "xom", module: "xom"
7171
exclude group: "xerces", module: "xercesImpl"
7272
}
73-
testCompile("org.xmlunit:xmlunit-matchers:2.5.1")
73+
testCompile("org.xmlunit:xmlunit-matchers:2.6.0")
7474
testCompile("io.projectreactor:reactor-core")
7575
testCompile("io.reactivex:rxjava:${rxjavaVersion}")
7676
testCompile("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}")

0 commit comments

Comments
 (0)