Skip to content

Commit a8d7534

Browse files
committed
Upgrade dependencies, including Gradle
* Fix `release.yml` workflow for new `SPRING_RELEASE_CHAT_WEBHOOK_URL` secret
1 parent f64f77c commit a8d7534

8 files changed

+24
-11
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
OSSRH_STAGING_PROFILE_NAME: ${{ secrets.OSSRH_STAGING_PROFILE_NAME }}
2828
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
2929
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
30-
SPRING_RELEASE_SLACK_WEBHOOK_URL: ${{ secrets.SPRING_RELEASE_SLACK_WEBHOOK_URL }}
30+
SPRING_RELEASE_CHAT_WEBHOOK_URL: ${{ secrets.SPRING_RELEASE_GCHAT_WEBHOOK_URL }}

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
id 'idea'
99
id 'checkstyle'
1010
id 'org.ajoberstar.grgit' version '5.2.2'
11-
id 'io.spring.dependency-management' version '1.1.4'
11+
id 'io.spring.dependency-management' version '1.1.6'
1212
}
1313

1414
description = 'Spring Integration AWS Support'
@@ -26,18 +26,18 @@ repositories {
2626
}
2727

2828
ext {
29-
assertjVersion = '3.25.3'
29+
assertjVersion = '3.26.3'
3030
awaitilityVersion = '4.2.1'
3131
awsSdkVersion = '2.20.162'
3232
jacksonVersion = '2.15.4'
33-
junitVersion = '5.10.2'
33+
junitVersion = '5.10.3'
3434
log4jVersion = '2.23.1'
3535
servletApiVersion = '6.0.0'
3636
springCloudAwsVersion = '3.0.4'
3737
springIntegrationVersion = '6.0.9'
3838
kinesisClientVersion = '2.5.8'
3939
kinesisProducerVersion = '0.15.10'
40-
testcontainersVersion = '1.19.7'
40+
testcontainersVersion = '1.19.8'
4141

4242
idPrefix = 'aws'
4343

gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
version=3.0.8-SNAPSHOT
2+
org.gradle.daemon=true
23
org.gradle.caching=true
34
org.gradle.parallel=true

gradle/wrapper/gradle-wrapper.jar

51 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=544c35d6bd849ae8a5ed0bcea39ba677dc40f49df7d1835561582da2009b961d
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionSha256Sum=d725d707bfabd4dfdc958c624003b3c80accc03f7037b5122c4b1d0ef15cecab
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -55,7 +57,7 @@
5557
# Darwin, MinGW, and NonStop.
5658
#
5759
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
60+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5961
# within the Gradle project.
6062
#
6163
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

gradlew.bat

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

settings.gradle

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1+
pluginManagement {
2+
repositories {
3+
gradlePluginPortal()
4+
mavenCentral()
5+
}
6+
}
7+
18
plugins {
2-
id 'com.gradle.develocity' version '3.17.2'
3-
id 'io.spring.ge.conventions' version '0.0.17'
9+
id 'com.gradle.develocity' version '3.17.5'
10+
id 'io.spring.develocity.conventions' version '0.0.19'
411
}
512

613
rootProject.name = 'spring-integration-aws'

0 commit comments

Comments
 (0)