Skip to content

Commit e2d01bb

Browse files
committed
Merge branch '5.1.x'
2 parents 21267e5 + 29dcd19 commit e2d01bb

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ ext {
2828
(it.name != "spring-build-src") && (it.name != "spring-framework-bom") && (it.name != "spring-core-coroutines")
2929
}
3030

31-
aspectjVersion = "1.9.3"
31+
aspectjVersion = "1.9.4"
3232
coroutinesVersion = "1.2.1"
3333
freemarkerVersion = "2.3.28"
3434
groovyVersion = "2.5.7"
3535
hsqldbVersion = "2.4.1"
3636
jackson2Version = "2.9.9"
37-
jettyVersion = "9.4.18.v20190429"
37+
jettyVersion = "9.4.19.v20190610"
3838
junit5Version = "5.5.0-RC2"
3939
kotlinVersion = "1.3.40"
4040
log4jVersion = "2.11.2"
@@ -43,14 +43,14 @@ ext {
4343
rsocketVersion = "0.12.2-RC4"
4444
rxjavaVersion = "1.3.8"
4545
rxjavaAdapterVersion = "1.2.1"
46-
rxjava2Version = "2.2.9"
46+
rxjava2Version = "2.2.10"
4747
slf4jVersion = "1.7.26" // spring-jcl + consistent 3rd party deps
4848
tiles3Version = "3.0.8"
4949
tomcatVersion = "9.0.21"
50-
undertowVersion = "2.0.21.Final"
50+
undertowVersion = "2.0.22.Final"
5151

5252
gradleScriptDir = "${rootProject.projectDir}/gradle"
53-
withoutJclOverSlf4J = {
53+
withoutJclOverSlf4j = {
5454
exclude group: "org.slf4j", module: "jcl-over-slf4j"
5555
}
5656
}

spring-context-support/spring-context-support.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies {
1616
optional("org.freemarker:freemarker:${freemarkerVersion}")
1717
testCompile(project(":spring-context"))
1818
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
19-
testCompile("org.hibernate:hibernate-validator:6.0.16.Final")
19+
testCompile("org.hibernate:hibernate-validator:6.0.17.Final")
2020
testCompile("javax.annotation:javax.annotation-api:1.3.2")
2121
testRuntime("org.ehcache:jcache:1.0.1")
2222
testRuntime("org.ehcache:ehcache:3.4.0")

spring-test/spring-test.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,16 @@ dependencies {
6161
testCompile("javax.interceptor:javax.interceptor-api:1.2.2")
6262
testCompile("javax.mail:javax.mail-api:1.6.2")
6363
testCompile("org.hibernate:hibernate-core:5.4.3.Final")
64-
testCompile("org.hibernate:hibernate-validator:6.0.16.Final")
64+
testCompile("org.hibernate:hibernate-validator:6.0.17.Final")
6565
testCompile("org.junit.platform:junit-platform-runner")
6666
testCompile("org.junit.platform:junit-platform-testkit")
6767
testCompile("org.junit.jupiter:junit-jupiter-params")
6868
testCompile("com.fasterxml.jackson.core:jackson-databind:${jackson2Version}")
6969
testCompile("com.thoughtworks.xstream:xstream:1.4.10")
7070
testCompile("com.rometools:rome:1.12.0")
7171
testCompile("org.apache.tiles:tiles-api:${tiles3Version}")
72-
testCompile("org.apache.tiles:tiles-core:${tiles3Version}", withoutJclOverSlf4J)
73-
testCompile("org.apache.tiles:tiles-servlet:${tiles3Version}", withoutJclOverSlf4J)
72+
testCompile("org.apache.tiles:tiles-core:${tiles3Version}", withoutJclOverSlf4j)
73+
testCompile("org.apache.tiles:tiles-servlet:${tiles3Version}", withoutJclOverSlf4j)
7474
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
7575
testCompile("org.apache.httpcomponents:httpclient:4.5.9") {
7676
exclude group: "commons-logging", module: "commons-logging"

spring-webflux/spring-webflux.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies {
4545
optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:${coroutinesVersion}")
4646
testCompile("javax.xml.bind:jaxb-api:2.3.1")
4747
testCompile("com.fasterxml:aalto-xml:1.1.1")
48-
testCompile("org.hibernate:hibernate-validator:6.0.16.Final")
48+
testCompile("org.hibernate:hibernate-validator:6.0.17.Final")
4949
testCompile "io.reactivex.rxjava2:rxjava:${rxjava2Version}"
5050
testCompile("io.projectreactor:reactor-test")
5151
testCompile("io.undertow:undertow-core:${undertowVersion}")

spring-webmvc/spring-webmvc.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ dependencies {
3030
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${jackson2Version}")
3131
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-smile:${jackson2Version}")
3232
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${jackson2Version}")
33-
optional("org.apache.tiles:tiles-api:${tiles3Version}", withoutJclOverSlf4J)
34-
optional("org.apache.tiles:tiles-core:${tiles3Version}", withoutJclOverSlf4J)
35-
optional("org.apache.tiles:tiles-servlet:${tiles3Version}", withoutJclOverSlf4J)
36-
optional("org.apache.tiles:tiles-jsp:${tiles3Version}", withoutJclOverSlf4J)
37-
optional("org.apache.tiles:tiles-el:${tiles3Version}", withoutJclOverSlf4J)
33+
optional("org.apache.tiles:tiles-api:${tiles3Version}", withoutJclOverSlf4j)
34+
optional("org.apache.tiles:tiles-core:${tiles3Version}", withoutJclOverSlf4j)
35+
optional("org.apache.tiles:tiles-servlet:${tiles3Version}", withoutJclOverSlf4j)
36+
optional("org.apache.tiles:tiles-jsp:${tiles3Version}", withoutJclOverSlf4j)
37+
optional("org.apache.tiles:tiles-el:${tiles3Version}", withoutJclOverSlf4j)
3838
optional("org.apache.tiles:tiles-extras:${tiles3Version}") {
3939
exclude group: "org.springframework", module: "spring-web"
4040
exclude group: "org.slf4j", module: "jcl-over-slf4j"
@@ -67,7 +67,7 @@ dependencies {
6767
}
6868
testCompile("org.xmlunit:xmlunit-assertj:2.6.2")
6969
testCompile("org.xmlunit:xmlunit-matchers:2.6.2")
70-
testCompile("org.hibernate:hibernate-validator:6.0.16.Final")
70+
testCompile("org.hibernate:hibernate-validator:6.0.17.Final")
7171
testCompile("io.projectreactor:reactor-core")
7272
testCompile("io.reactivex:rxjava:${rxjavaVersion}")
7373
testCompile("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}")

0 commit comments

Comments
 (0)