Fix JDBC tests and some upgrades
https://build.spring.io/browse/INT-FATS5IC-430 Looks like there is a race condition when our polling rate around data base is too fast and we have access to the DB files even during application context close. * Stop polling channel adapter in the tests explicitly after test methods * Increase some tests performance decreasing timeouts to wait * Upgrade to Reactor-3.1.5, AssertJ-3.9.1, Derby-10.14.1.0 and some Gradle plugins * Upgrade to `reactor-netty-0.7.5` * Remove workaround from the `StompServerIntegrationTests` * Upgrade to Spring Data Kay SR5 * Upgrade to Spring Security 5.0.3 * Increase timeouts and performance in the `StreamTransformerParserTests`
This commit is contained in:
committed by
Gary Russell
parent
b55a5bdde4
commit
cb0d43db6b
22
build.gradle
22
build.gradle
@@ -3,7 +3,7 @@ buildscript {
|
||||
maven { url 'https://repo.spring.io/plugins-release' }
|
||||
}
|
||||
dependencies {
|
||||
classpath 'io.spring.gradle:dependency-management-plugin:1.0.3.RELEASE'
|
||||
classpath 'io.spring.gradle:dependency-management-plugin:1.0.4.RELEASE'
|
||||
classpath 'io.spring.gradle:spring-io-plugin:0.0.8.RELEASE'
|
||||
classpath 'io.spring.gradle:docbook-reference-plugin:0.3.1'
|
||||
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.0'
|
||||
@@ -11,7 +11,7 @@ buildscript {
|
||||
}
|
||||
|
||||
plugins {
|
||||
id 'org.sonarqube' version '2.5'
|
||||
id 'org.sonarqube' version '2.6.1'
|
||||
}
|
||||
|
||||
description = 'Spring Integration'
|
||||
@@ -90,13 +90,13 @@ subprojects { subproject ->
|
||||
activeMqVersion = '5.15.2'
|
||||
apacheSshdVersion = '1.6.0'
|
||||
aspectjVersion = '1.8.13'
|
||||
assertjVersion = '2.6.0'
|
||||
assertjVersion = '3.9.1'
|
||||
boonVersion = '0.34'
|
||||
commonsDbcp2Version = '2.1.1'
|
||||
commonsIoVersion = '2.4'
|
||||
commonsNetVersion = '3.5'
|
||||
curatorVersion = '2.11.1'
|
||||
derbyVersion = '10.13.1.1'
|
||||
derbyVersion = '10.14.1.0'
|
||||
eclipseLinkVersion = '2.6.4'
|
||||
ftpServerVersion = '1.1.1'
|
||||
groovyVersion = '2.4.12'
|
||||
@@ -125,17 +125,17 @@ subprojects { subproject ->
|
||||
mysqlVersion = '6.0.6'
|
||||
pahoMqttClientVersion = '1.2.0'
|
||||
postgresVersion = '42.0.0'
|
||||
reactorNettyVersion = '0.7.4.RELEASE'
|
||||
reactorVersion = '3.1.4.RELEASE'
|
||||
reactorNettyVersion = '0.7.5.RELEASE'
|
||||
reactorVersion = '3.1.5.RELEASE'
|
||||
romeToolsVersion = '1.8.0'
|
||||
servletApiVersion = '4.0.0'
|
||||
smackVersion = '4.2.2'
|
||||
springAmqpVersion = project.hasProperty('springAmqpVersion') ? project.springAmqpVersion : '2.0.2.RELEASE'
|
||||
springDataJpaVersion = '2.0.4.RELEASE'
|
||||
springDataMongoVersion = '2.0.4.RELEASE'
|
||||
springDataRedisVersion = '2.0.4.RELEASE'
|
||||
springGemfireVersion = '2.0.4.RELEASE'
|
||||
springSecurityVersion = '5.0.2.RELEASE'
|
||||
springDataJpaVersion = '2.0.5.RELEASE'
|
||||
springDataMongoVersion = '2.0.5.RELEASE'
|
||||
springDataRedisVersion = '2.0.5.RELEASE'
|
||||
springGemfireVersion = '2.0.5.RELEASE'
|
||||
springSecurityVersion = '5.0.3.RELEASE'
|
||||
springSocialTwitterVersion = '1.1.2.RELEASE'
|
||||
springRetryVersion = '1.2.2.RELEASE'
|
||||
springVersion = project.hasProperty('springVersion') ? project.springVersion : '5.0.4.RELEASE'
|
||||
|
||||
Reference in New Issue
Block a user