Skip to content

Commit 1b18e49

Browse files
committed
Upgrade dependencies; prepare fpr release
1 parent 82bb183 commit 1b18e49

File tree

1 file changed

+21
-23
lines changed

1 file changed

+21
-23
lines changed

build.gradle

Lines changed: 21 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
buildscript {
2-
ext.kotlinVersion = '1.8.10'
2+
ext.kotlinVersion = '1.8.20'
33
ext.isCI = System.getenv('GITHUB_ACTION') || System.getenv('bamboo_buildKey')
44
repositories {
55
gradlePluginPortal()
6-
maven { url 'https://repo.spring.io/plugins-release' }
6+
mavenCentral()
77
if (version.endsWith('SNAPSHOT')) {
88
maven { url 'https://repo.spring.io/snapshot' }
99
}
@@ -15,14 +15,13 @@ buildscript {
1515
}
1616

1717
plugins {
18-
id 'org.sonarqube' version '4.2.1.3168'
18+
id 'org.sonarqube' version '4.3.0.3225'
1919
id 'io.spring.nohttp' version '0.0.11' apply false
2020
id 'org.ajoberstar.grgit' version '4.1.1'
21-
id 'io.spring.dependency-management' version '1.1.0'
22-
id 'com.jfrog.artifactory' version '4.32.0' apply false
21+
id 'io.spring.dependency-management' version '1.1.2'
22+
id 'com.jfrog.artifactory' version '4.33.1' apply false
2323
id 'org.jetbrains.dokka' version "$kotlinVersion"
2424
id 'org.asciidoctor.jvm.pdf' version '3.3.2'
25-
id 'org.asciidoctor.jvm.gems' version '3.3.2'
2625
id 'org.asciidoctor.jvm.convert' version '3.3.2'
2726
}
2827

@@ -53,7 +52,7 @@ ext {
5352
aspectjVersion = '1.9.19'
5453
assertjVersion = '3.24.2'
5554
assertkVersion = '0.26.1'
56-
avroVersion = '1.11.1'
55+
avroVersion = '1.11.2'
5756
awaitilityVersion = '4.2.0'
5857
camelVersion = '3.20.5'
5958
commonsDbcp2Version = '2.9.0'
@@ -65,19 +64,19 @@ ext {
6564
ftpServerVersion = '1.2.0'
6665
graalvmVersion = '22.3.2'
6766
greenmailVersion = '2.0.0'
68-
groovyVersion = '4.0.12'
67+
groovyVersion = '4.0.13'
6968
hamcrestVersion = '2.2'
7069
hazelcastVersion = '5.2.4'
71-
hibernateVersion = '6.2.5.Final'
70+
hibernateVersion = '6.2.6.Final'
7271
hsqldbVersion = '2.7.2'
73-
h2Version = '2.1.214'
72+
h2Version = '2.2.220'
7473
jacksonVersion = '2.15.2'
7574
jaxbVersion = '4.0.3'
76-
jcifsVersion = '2.1.34'
75+
jcifsVersion = '2.1.35'
7776
jeroMqVersion = '0.5.3'
7877
jmsApiVersion = '3.1.0'
7978
jpaApiVersion = '3.1.0'
80-
jrubyVersion = '9.4.1.0'
79+
jrubyVersion = '9.4.3.0'
8180
jsonpathVersion = '2.8.0'
8281
junit4Version = '4.13.2'
8382
junitJupiterVersion = '5.9.3'
@@ -87,31 +86,31 @@ ext {
8786
lettuceVersion = '6.2.4.RELEASE'
8887
log4jVersion = '2.20.0'
8988
mailVersion = '1.0.0'
90-
micrometerTracingVersion = '1.1.2'
91-
micrometerVersion = '1.11.1'
89+
micrometerTracingVersion = '1.1.3'
90+
micrometerVersion = '1.11.2'
9291
mockitoVersion = '5.3.1'
9392
mongoDriverVersion = '4.9.1'
9493
mysqlVersion = '8.0.33'
9594
pahoMqttClientVersion = '1.2.5'
9695
postgresVersion = '42.6.0'
9796
protobufVersion = '3.23.3'
9897
r2dbch2Version = '1.0.0.RELEASE'
99-
reactorVersion = '2022.0.8'
98+
reactorVersion = '2022.0.9'
10099
resilience4jVersion = '2.0.2'
101100
romeToolsVersion = '2.1.0'
102101
rsocketVersion = '1.1.4'
103102
servletApiVersion = '6.0.0'
104103
smackVersion = '4.4.6'
105-
springAmqpVersion = '3.0.5'
106-
springDataVersion = '2023.0.1'
107-
springGraphqlVersion = '1.2.1'
108-
springKafkaVersion = '3.0.8'
104+
springAmqpVersion = '3.0.6'
105+
springDataVersion = '2023.0.2'
106+
springGraphqlVersion = '1.2.2'
107+
springKafkaVersion = '3.0.9'
109108
springRetryVersion = '2.0.2'
110109
springSecurityVersion = '6.1.1'
111-
springVersion = '6.0.10'
110+
springVersion = '6.0.11'
112111
springWsVersion = '4.0.4'
113112
testcontainersVersion = '1.18.3'
114-
tomcatVersion = '10.1.10'
113+
tomcatVersion = '10.1.11'
115114
xmlUnitVersion = '2.9.1'
116115
xstreamVersion = '1.4.20'
117116
ztZipVersion = '1.15'
@@ -127,7 +126,6 @@ allprojects {
127126
mavenLocal()
128127
}
129128
mavenCentral()
130-
maven { url 'https://repo.spring.io/release' }
131129
maven { url 'https://repo.spring.io/milestone' }
132130
if (version.endsWith('SNAPSHOT')) {
133131
maven { url 'https://repo.spring.io/snapshot' }
@@ -364,7 +362,7 @@ configure(javaProjects) { subproject ->
364362

365363
checkstyle {
366364
configDirectory.set(rootProject.file('src/checkstyle'))
367-
toolVersion = project.hasProperty('checkstyleVersion') ? project.checkstyleVersion : '10.12.0'
365+
toolVersion = project.hasProperty('checkstyleVersion') ? project.checkstyleVersion : '10.12.1'
368366
}
369367

370368
jar {

0 commit comments

Comments
 (0)