Skip to content

Commit cbc0fad

Browse files
committed
Upgrade to Kotlin 1.2.70
Includes Hibernate ORM 5.1.16 and Hibernate Validator 6.0.13.
1 parent 65c8fa4 commit cbc0fad

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
// 3rd party plugin repositories can be configured in settings.gradle
1212
plugins {
1313
id "io.spring.dependency-management" version "1.0.5.RELEASE" apply false
14-
id "org.jetbrains.kotlin.jvm" version "1.2.61" apply false
14+
id "org.jetbrains.kotlin.jvm" version "1.2.70" apply false
1515
id "org.jetbrains.dokka" version "0.9.17"
1616
id "org.asciidoctor.convert" version "1.5.7"
1717
}
@@ -35,7 +35,7 @@ ext {
3535
jackson2Version = "2.9.6"
3636
jettyVersion = "9.4.12.v20180830"
3737
junit5Version = "5.3.1"
38-
kotlinVersion = "1.2.61"
38+
kotlinVersion = "1.2.70"
3939
log4jVersion = "2.11.1"
4040
nettyVersion = "4.1.29.Final"
4141
reactorVersion = "Californium-RC1"
@@ -277,7 +277,7 @@ configure(rootProject) {
277277
testCompile("javax.servlet:javax.servlet-api:3.1.0")
278278
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
279279
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
280-
testCompile("org.hibernate:hibernate-core:5.1.15.Final")
280+
testCompile("org.hibernate:hibernate-core:5.1.16.Final")
281281
}
282282

283283
artifacts {

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.12.Final")
19+
testCompile("org.hibernate:hibernate-validator:6.0.13.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ 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.2.17.Final")
64-
testCompile("org.hibernate:hibernate-validator:6.0.12.Final")
64+
testCompile("org.hibernate:hibernate-validator:6.0.13.Final")
6565
// Enable use of the JUnit Platform Runner
6666
testCompile("org.junit.platform:junit-platform-runner")
6767
testCompile("org.junit.jupiter:junit-jupiter-params")

spring-webflux/spring-webflux.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies {
4141
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
4242
optional("com.google.protobuf:protobuf-java-util:3.6.1")
4343
testCompile("javax.xml.bind:jaxb-api:2.3.0")
44-
testCompile("org.hibernate:hibernate-validator:6.0.12.Final")
44+
testCompile("org.hibernate:hibernate-validator:6.0.13.Final")
4545
testCompile "io.reactivex.rxjava2:rxjava:${rxjava2Version}"
4646
testCompile("io.projectreactor:reactor-test")
4747
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")

spring-webmvc/spring-webmvc.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies {
5050
testCompile("org.eclipse.jetty:jetty-server") {
5151
exclude group: "javax.servlet", module: "javax.servlet"
5252
}
53-
testCompile("org.hibernate:hibernate-validator:6.0.12.Final")
53+
testCompile("org.hibernate:hibernate-validator:6.0.13.Final")
5454
testCompile("org.apache.httpcomponents:httpclient:4.5.6") {
5555
exclude group: "commons-logging", module: "commons-logging"
5656
}

0 commit comments

Comments
 (0)