Skip to content

Commit

Permalink
Upgrade to Tomcat 9.0.26, Undertow 2.0.26, Hibernate ORM 5.3.12
Browse files Browse the repository at this point in the history
Includes Netty 4.1.39 (aligned with Reactor) and Checkstyle 8.24.
  • Loading branch information
jhoeller committed Sep 25, 2019
1 parent bb6f9bb commit b1ed051
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ ext {
junit5Version = "5.3.2"
kotlinVersion = "1.2.71"
log4jVersion = "2.11.2"
nettyVersion = "4.1.38.Final"
nettyVersion = "4.1.39.Final"
reactorVersion = "Californium-SR12"
rxjavaVersion = "1.3.8"
rxjavaAdapterVersion = "1.2.1"
rxjava2Version = "2.2.10"
slf4jVersion = "1.7.26" // spring-jcl + consistent 3rd party deps
tiles3Version = "3.0.8"
tomcatVersion = "9.0.22"
undertowVersion = "2.0.23.Final"
tomcatVersion = "9.0.26"
undertowVersion = "2.0.26.Final"

gradleScriptDir = "${rootProject.projectDir}/gradle"
withoutJclOverSlf4j = {
Expand Down Expand Up @@ -142,7 +142,7 @@ configure(allprojects) { project ->
}

checkstyle {
toolVersion = "8.23"
toolVersion = "8.24"
configDir = rootProject.file("src/checkstyle")
}

Expand Down
2 changes: 1 addition & 1 deletion spring-aspects/spring-aspects.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ dependencies {
optional(project(":spring-context-support")) // for JavaMail and JSR-107 support
optional(project(":spring-orm")) // for JPA exception translation support
optional(project(":spring-tx")) // for JPA, @Transactional support
optional("javax.cache:cache-api:1.1.0") // for JCache aspect
optional("javax.cache:cache-api:1.1.0") // for JCache aspect
optional("javax.transaction:javax.transaction-api:1.3") // for @javax.transaction.Transactional support
testCompile(project(":spring-core")) // for CodeStyleAspect
testCompile(project(":spring-test"))
Expand Down
2 changes: 1 addition & 1 deletion spring-orm/spring-orm.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
optional(project(":spring-context"))
optional(project(":spring-web"))
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")
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
Expand Down
2 changes: 1 addition & 1 deletion spring-test/spring-test.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies {
testCompile("javax.ejb:javax.ejb-api:3.2")
testCompile("javax.interceptor:javax.interceptor-api:1.2.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")
// Enable use of the JUnit Platform Runner
testCompile("org.junit.platform:junit-platform-runner")
Expand Down

0 comments on commit b1ed051

Please sign in to comment.