Upgrade to Tomcat 9.0.26, Undertow 2.0.26, Hibernate ORM 5.3.12
Includes Netty 4.1.39 (aligned with Reactor) and Checkstyle 8.24.
This commit is contained in:
parent
bb6f9bb6d4
commit
b1ed0511f7
|
@ -37,15 +37,15 @@ ext {
|
||||||
junit5Version = "5.3.2"
|
junit5Version = "5.3.2"
|
||||||
kotlinVersion = "1.2.71"
|
kotlinVersion = "1.2.71"
|
||||||
log4jVersion = "2.11.2"
|
log4jVersion = "2.11.2"
|
||||||
nettyVersion = "4.1.38.Final"
|
nettyVersion = "4.1.39.Final"
|
||||||
reactorVersion = "Californium-SR12"
|
reactorVersion = "Californium-SR12"
|
||||||
rxjavaVersion = "1.3.8"
|
rxjavaVersion = "1.3.8"
|
||||||
rxjavaAdapterVersion = "1.2.1"
|
rxjavaAdapterVersion = "1.2.1"
|
||||||
rxjava2Version = "2.2.10"
|
rxjava2Version = "2.2.10"
|
||||||
slf4jVersion = "1.7.26" // spring-jcl + consistent 3rd party deps
|
slf4jVersion = "1.7.26" // spring-jcl + consistent 3rd party deps
|
||||||
tiles3Version = "3.0.8"
|
tiles3Version = "3.0.8"
|
||||||
tomcatVersion = "9.0.22"
|
tomcatVersion = "9.0.26"
|
||||||
undertowVersion = "2.0.23.Final"
|
undertowVersion = "2.0.26.Final"
|
||||||
|
|
||||||
gradleScriptDir = "${rootProject.projectDir}/gradle"
|
gradleScriptDir = "${rootProject.projectDir}/gradle"
|
||||||
withoutJclOverSlf4j = {
|
withoutJclOverSlf4j = {
|
||||||
|
@ -142,7 +142,7 @@ configure(allprojects) { project ->
|
||||||
}
|
}
|
||||||
|
|
||||||
checkstyle {
|
checkstyle {
|
||||||
toolVersion = "8.23"
|
toolVersion = "8.24"
|
||||||
configDir = rootProject.file("src/checkstyle")
|
configDir = rootProject.file("src/checkstyle")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ dependencies {
|
||||||
optional(project(":spring-context"))
|
optional(project(":spring-context"))
|
||||||
optional(project(":spring-web"))
|
optional(project(":spring-web"))
|
||||||
optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.4")
|
optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.4")
|
||||||
optional("org.hibernate:hibernate-core:5.3.10.Final")
|
optional("org.hibernate:hibernate-core:5.3.12.Final")
|
||||||
optional("javax.servlet:javax.servlet-api:3.1.0")
|
optional("javax.servlet:javax.servlet-api:3.1.0")
|
||||||
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
|
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
|
||||||
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
|
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
|
||||||
|
|
|
@ -60,7 +60,7 @@ dependencies {
|
||||||
testCompile("javax.ejb:javax.ejb-api:3.2")
|
testCompile("javax.ejb:javax.ejb-api:3.2")
|
||||||
testCompile("javax.interceptor:javax.interceptor-api:1.2.2")
|
testCompile("javax.interceptor:javax.interceptor-api:1.2.2")
|
||||||
testCompile("javax.mail:javax.mail-api:1.6.2")
|
testCompile("javax.mail:javax.mail-api:1.6.2")
|
||||||
testCompile("org.hibernate:hibernate-core:5.3.10.Final")
|
testCompile("org.hibernate:hibernate-core:5.3.12.Final")
|
||||||
testCompile("org.hibernate:hibernate-validator:6.0.17.Final")
|
testCompile("org.hibernate:hibernate-validator:6.0.17.Final")
|
||||||
// Enable use of the JUnit Platform Runner
|
// Enable use of the JUnit Platform Runner
|
||||||
testCompile("org.junit.platform:junit-platform-runner")
|
testCompile("org.junit.platform:junit-platform-runner")
|
||||||
|
|
Loading…
Reference in New Issue