Skip to content

Commit 848ccda

Browse files
committed
Upgrade dependencies; prepare for release
1 parent d7a2dd5 commit 848ccda

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

build.gradle

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ plugins {
77
id 'eclipse'
88
id 'idea'
99
id 'jacoco'
10-
id 'org.sonarqube' version '4.0.0.2929'
10+
id 'org.sonarqube' version '4.2.0.3129'
1111
id 'checkstyle'
1212
id 'org.ajoberstar.grgit' version '4.1.1'
1313
id 'io.spring.dependency-management' version '1.1.0'
14-
id 'com.jfrog.artifactory' version '4.31.9'
14+
id 'com.jfrog.artifactory' version '4.32.0'
1515
}
1616

1717
description = 'Spring Integration AWS Support'
@@ -21,7 +21,6 @@ group = 'org.springframework.integration'
2121
repositories {
2222
mavenCentral()
2323
maven { url 'https://repo.spring.io/milestone' }
24-
maven { url 'https://repo.spring.io/release' }
2524
if (version.endsWith('SNAPSHOT')) {
2625
maven { url 'https://repo.spring.io/snapshot' }
2726
}
@@ -32,16 +31,16 @@ repositories {
3231
ext {
3332
assertjVersion = '3.24.2'
3433
awaitilityVersion = '4.2.0'
35-
awsSdkVersion = '2.20.57'
36-
jacksonVersion = '2.15.0'
37-
junitVersion = '5.9.2'
34+
awsSdkVersion = '2.20.75'
35+
jacksonVersion = '2.15.2'
36+
junitVersion = '5.9.3'
3837
log4jVersion = '2.20.0'
3938
servletApiVersion = '6.0.0'
40-
springCloudAwsVersion = '3.0.0'
39+
springCloudAwsVersion = '3.0.1'
4140
springIntegrationVersion = '6.0.5'
42-
kinesisClientVersion = '2.4.8'
41+
kinesisClientVersion = '2.5.0'
4342
kinesisProducerVersion = '0.15.7'
44-
testcontainersVersion = '1.18.0'
43+
testcontainersVersion = '1.18.2'
4544

4645
idPrefix = 'aws'
4746

@@ -99,12 +98,12 @@ dependencyManagement {
9998
}
10099

101100
jacoco {
102-
toolVersion = '0.8.8'
101+
toolVersion = '0.8.10'
103102
}
104103

105104
checkstyle {
106105
configDirectory.set(rootProject.file('src/checkstyle'))
107-
toolVersion = '10.9.2'
106+
toolVersion = '10.12.0'
108107
}
109108

110109
dependencies {

gradle/wrapper/gradle-wrapper.jar

468 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=ff7bf6a86f09b9b2c40bb8f48b25fc19cf2b2664fd1d220cd7ab833ec758d0d7
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
3+
distributionSha256Sum=e111cb9948407e26351227dabce49822fb88c37ee72f1d1582a69c68af2e702f
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
55
networkTimeout=10000
66
zipStoreBase=GRADLE_USER_HOME
77
zipStorePath=wrapper/dists

gradlew

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,6 @@ done
8585
APP_BASE_NAME=${0##*/}
8686
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
8787

88-
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
89-
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
90-
9188
# Use the maximum available, or set MAX_FD != -1 to use that value.
9289
MAX_FD=maximum
9390

@@ -197,6 +194,10 @@ if "$cygwin" || "$msys" ; then
197194
done
198195
fi
199196

197+
198+
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
199+
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
200+
200201
# Collect all arguments for the java command;
201202
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
202203
# shell script including quotes and variable substitutions, so put them in

0 commit comments

Comments
 (0)