Skip to content

Commit cde9506

Browse files
committed
Upgrade dependencies; prepare for release
1 parent c264e12 commit cde9506

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

build.gradle

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlinVersion = '1.3.71'
2+
ext.kotlinVersion = '1.3.72'
33
repositories {
44
maven { url 'https://repo.spring.io/plugins-release' }
55
}
@@ -12,13 +12,13 @@ buildscript {
1212
plugins {
1313
id 'org.sonarqube' version '2.8'
1414
id 'io.spring.nohttp' version '0.0.4.RELEASE' apply false
15-
id 'org.ajoberstar.grgit' version '4.0.1'
15+
id 'org.ajoberstar.grgit' version '4.0.2'
1616
id "io.spring.dependency-management" version '1.0.9.RELEASE'
17-
id 'com.jfrog.artifactory' version '4.15.1' apply false
17+
id 'com.jfrog.artifactory' version '4.15.2' apply false
1818
id 'org.jetbrains.dokka' version '0.10.1'
19-
id 'org.asciidoctor.jvm.pdf' version '3.1.0'
20-
id 'org.asciidoctor.jvm.gems' version '3.1.0'
21-
id 'org.asciidoctor.jvm.convert' version '3.1.0'
19+
id 'org.asciidoctor.jvm.pdf' version '3.2.0'
20+
id 'org.asciidoctor.jvm.gems' version '3.2.0'
21+
id 'org.asciidoctor.jvm.convert' version '3.2.0'
2222
}
2323

2424
if (System.getenv('TRAVIS') || System.getenv('bamboo_buildKey')) {
@@ -40,7 +40,7 @@ ext {
4040
linkScmUrl = 'https://github.com/spring-projects/spring-integration'
4141
linkScmConnection = 'scm:git:git://github.com/spring-projects/spring-integration.git'
4242
linkScmDevConnection = 'scm:git:ssh://[email protected]:spring-projects/spring-integration.git'
43-
docResourcesVersion = '0.2.1.RELEASE'
43+
docResourcesVersion = '0.2.2.RELEASE'
4444

4545
modifiedFiles =
4646
files(grgit.status().unstaged.modified).filter{ f -> f.name.endsWith('.java') || f.name.endsWith('.kt') }
@@ -59,47 +59,47 @@ ext {
5959
derbyVersion = '10.14.2.0'
6060
ftpServerVersion = '1.1.1'
6161
googleJsr305Version = '3.0.2'
62-
groovyVersion = '2.5.10'
62+
groovyVersion = '2.5.11'
6363
hamcrestVersion = '2.2'
6464
hazelcastVersion = '3.12.6'
65-
hibernateVersion = '5.4.13.Final'
65+
hibernateVersion = '5.4.14.Final'
6666
hsqldbVersion = '2.5.0'
6767
h2Version = '1.4.200'
68-
jacksonVersion = '2.10.3'
68+
jacksonVersion = '2.11.0'
6969
javaxActivationVersion = '1.2.0'
7070
javaxMailVersion = '1.6.2'
7171
jmsApiVersion = '2.0.1'
7272
jpa21ApiVersion = '1.0.2.Final'
7373
jpaApiVersion = '2.2.1'
74-
jrubyVersion = '9.2.11.0'
74+
jrubyVersion = '9.2.11.1'
7575
jschVersion = '0.1.55'
7676
jsonpathVersion = '2.4.0'
7777
junit4Version = '4.13'
78-
junitJupiterVersion = '5.6.1'
79-
jythonVersion = '2.7.0'
78+
junitJupiterVersion = '5.6.2'
79+
jythonVersion = '2.7.2'
8080
kryoShadedVersion = '4.0.2'
81-
lettuceVersion = '5.2.2.RELEASE'
82-
log4jVersion = '2.13.1'
83-
micrometerVersion = '1.3.7'
81+
lettuceVersion = '5.3.0.RELEASE'
82+
log4jVersion = '2.13.2'
83+
micrometerVersion = '1.5.0'
8484
mockitoVersion = '3.3.3'
85-
mongoDriverVersion = '4.0.1'
86-
mysqlVersion = '8.0.19'
85+
mongoDriverVersion = '4.0.2'
86+
mysqlVersion = '8.0.20'
8787
pahoMqttClientVersion = '1.2.2'
88-
postgresVersion = '42.2.11'
89-
reactorVersion = 'Dysprosium-SR6'
90-
resilience4jVersion = '1.3.1'
88+
postgresVersion = '42.2.12'
89+
reactorVersion = 'Dysprosium-SR7'
90+
resilience4jVersion = '1.4.0'
9191
romeToolsVersion = '1.12.2'
9292
rsocketVersion = '1.0.0-RC7'
9393
servletApiVersion = '4.0.1'
9494
smackVersion = '4.3.4'
95-
springAmqpVersion = project.hasProperty('springAmqpVersion') ? project.springAmqpVersion : '2.2.5.RELEASE'
96-
springDataVersion = project.hasProperty('springDataVersion') ? project.springDataVersion : 'Neumann-RC1'
95+
springAmqpVersion = project.hasProperty('springAmqpVersion') ? project.springAmqpVersion : '2.2.6.RELEASE'
96+
springDataVersion = project.hasProperty('springDataVersion') ? project.springDataVersion : 'Neumann-RC2'
9797
springSecurityVersion = project.hasProperty('springSecurityVersion') ? project.springSecurityVersion : '5.3.1.RELEASE'
9898
springRetryVersion = '1.2.5.RELEASE'
9999
springVersion = project.hasProperty('springVersion') ? project.springVersion : '5.2.6.RELEASE'
100-
springWsVersion = '3.0.8.RELEASE'
101-
tomcatVersion = "9.0.33"
102-
xstreamVersion = '1.4.11.1'
100+
springWsVersion = '3.0.9.RELEASE'
101+
tomcatVersion = "9.0.34"
102+
xstreamVersion = '1.4.12'
103103

104104
javaProjects = subprojects - project(':spring-integration-bom')
105105
}
@@ -318,7 +318,7 @@ configure(javaProjects) { subproject ->
318318

319319
checkstyle {
320320
configFile = file("$rootDir/src/checkstyle/checkstyle.xml")
321-
toolVersion = project.hasProperty('checkstyleVersion') ? project.checkstyleVersion : '8.31'
321+
toolVersion = project.hasProperty('checkstyleVersion') ? project.checkstyleVersion : '8.32'
322322
}
323323

324324
jar {
@@ -1110,7 +1110,7 @@ task distZip(type: Zip, dependsOn: [docsZip, schemaZip]) {
11101110
into "${baseDir}"
11111111
expand(copyright: new Date().format("yyyy"), version: project.version)
11121112
}
1113-
1113+
Amqp
11141114
from("$project.rootDir") {
11151115
include 'LICENSE.txt'
11161116
into "${baseDir}"

0 commit comments

Comments
 (0)