Skip to content

Commit 821ab62

Browse files
committed
Upgrade to RxJava 2.2 and Kotlin 1.2.60
Includes latest dependency updates (Mockito 2.21, Log4J 2.11.1, Hibernate ORM 5.3.4, Protobuf 3.6.1, JRuby 9.2, HtmlUnit 2.32, Selenium 3.14) for Spring Framework 5.1. Issue: SPR-16388 Issue: SPR-16239
1 parent c55c9eb commit 821ab62

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

build.gradle

+5-5
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.51" apply false
14+
id "org.jetbrains.kotlin.jvm" version "1.2.60" apply false
1515
id "org.jetbrains.dokka" version "0.9.17"
1616
id "org.asciidoctor.convert" version "1.5.7"
1717
}
@@ -37,13 +37,13 @@ ext {
3737
junitPlatformVersion = "1.2.0"
3838
junitJupiterVersion = "5.2.0"
3939
junitVintageVersion = "5.2.0"
40-
kotlinVersion = "1.2.51"
41-
log4jVersion = "2.11.0"
40+
kotlinVersion = "1.2.60"
41+
log4jVersion = "2.11.1"
4242
nettyVersion = "4.1.28.Final"
4343
reactorVersion = "Californium-M1"
4444
rxjavaVersion = "1.3.8"
4545
rxjavaAdapterVersion = "1.2.1"
46-
rxjava2Version = "2.1.17"
46+
rxjava2Version = "2.2.0"
4747
slf4jVersion = "1.7.25" // spring-jcl + consistent 3rd party deps
4848
tiles3Version = "3.0.8"
4949
tomcatVersion = "9.0.10"
@@ -157,7 +157,7 @@ configure(allprojects) { project ->
157157
testCompile("junit:junit:4.12") {
158158
exclude group:'org.hamcrest', module:'hamcrest-core'
159159
}
160-
testCompile("org.mockito:mockito-core:2.20.0") {
160+
testCompile("org.mockito:mockito-core:2.21.0") {
161161
exclude group:'org.hamcrest', module:'hamcrest-core'
162162
}
163163
testCompile("com.nhaarman:mockito-kotlin:1.6.0") {

spring-orm/spring-orm.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
optional(project(":spring-context"))
1010
optional(project(":spring-web"))
1111
optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.2")
12-
optional("org.hibernate:hibernate-core:5.3.3.Final")
12+
optional("org.hibernate:hibernate-core:5.3.4.Final")
1313
optional("javax.servlet:javax.servlet-api:3.1.0")
1414
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
1515
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")

spring-test/spring-test.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ dependencies {
3636
optional("org.apache.taglibs:taglibs-standard-jstlel:1.2.5") {
3737
exclude group: "org.apache.taglibs", module: "taglibs-standard-spec"
3838
}
39-
optional("net.sourceforge.htmlunit:htmlunit:2.31") {
39+
optional("net.sourceforge.htmlunit:htmlunit:2.32") {
4040
exclude group: "commons-logging", module: "commons-logging"
4141
}
42-
optional("org.seleniumhq.selenium:htmlunit-driver:2.31.0") {
42+
optional("org.seleniumhq.selenium:htmlunit-driver:2.32.0") {
4343
exclude group: "commons-logging", module: "commons-logging"
4444
}
45-
optional("org.seleniumhq.selenium:selenium-java:3.13.0") {
45+
optional("org.seleniumhq.selenium:selenium-java:3.14.0") {
4646
exclude group: "commons-logging", module: "commons-logging"
4747
exclude group: "io.netty", module: "netty"
4848
}

spring-web/spring-web.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dependencies {
5555
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-smile:${jackson2Version}")
5656
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${jackson2Version}")
5757
optional("com.google.code.gson:gson:2.8.5")
58-
optional("com.google.protobuf:protobuf-java-util:3.6.0")
58+
optional("com.google.protobuf:protobuf-java-util:3.6.1")
5959
optional("com.googlecode.protobuf-java-format:protobuf-java-format:1.4")
6060
optional("com.rometools:rome:1.11.0")
6161
optional("com.caucho:hessian:4.0.51")

spring-webflux/spring-webflux.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies {
3939
}
4040
optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
4141
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
42-
optional("com.google.protobuf:protobuf-java-util:3.6.0")
42+
optional("com.google.protobuf:protobuf-java-util:3.6.1")
4343
testCompile("javax.xml.bind:jaxb-api:2.3.0")
4444
testCompile("org.hibernate:hibernate-validator:6.0.11.Final")
4545
testCompile "io.reactivex.rxjava2:rxjava:${rxjava2Version}"
@@ -55,7 +55,7 @@ dependencies {
5555
testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}")
5656
testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}")
5757
testRuntime("org.jetbrains.kotlin:kotlin-compiler:${kotlinVersion}")
58-
testRuntime("org.jruby:jruby:9.1.16.0")
58+
testRuntime("org.jruby:jruby:9.2.0.0")
5959
testRuntime("org.python:jython-standalone:2.7.1")
6060
testRuntime("org.synchronoss.cloud:nio-multipart-parser:1.1.0")
6161
testRuntime("org.webjars:underscorejs:1.8.3")

spring-webmvc/spring-webmvc.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ dependencies {
7474
testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}")
7575
testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}")
7676
testRuntime("org.jetbrains.kotlin:kotlin-compiler:${kotlinVersion}")
77-
testRuntime("org.jruby:jruby:9.1.16.0")
77+
testRuntime("org.jruby:jruby:9.2.0.0")
7878
testRuntime("org.python:jython-standalone:2.7.1")
7979
testRuntime("org.webjars:underscorejs:1.8.3")
8080
testRuntime("org.glassfish:javax.el:3.0.1-b08")

0 commit comments

Comments
 (0)