Skip to content

Commit cdd5fd8

Browse files
committed
Upgrade to Gradle 9.4.1
* Add `org.gradle.toolchains.foojay-resolver-convention` plugin * Fix `ci.yml` removing Java 26
1 parent 0939e11 commit cdd5fd8

6 files changed

Lines changed: 12 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
testJavaVersion: [ 17, 21, 25, 26 ]
20+
testJavaVersion: [ 17, 21, 25 ]
2121
os: [ ubuntu-latest, macos-latest, windows-latest ]
2222

2323
uses: spring-io/spring-github-workflows/.github/workflows/spring-gradle-ci.yml@main

gradle/wrapper/gradle-wrapper.jar

5.08 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

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=f1771298a70f6db5a29daf62378c4e18a17fc33c9ba6b14362e0cdf40610380d
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
3+
distributionSha256Sum=2ab2958f2a1e51120c326cad6f385153bb11ee93b3c216c5fccebfdfbb7ec6cb
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ pluginManagement {
77

88
plugins {
99
id 'io.spring.develocity.conventions' version '0.0.25'
10+
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
1011
}
1112

1213
rootProject.name = 'spring-amqp-dist'
1314

14-
include 'spring-amqp'
15-
include 'spring-amqp-bom'
16-
include 'spring-rabbit'
17-
include 'spring-rabbit-stream'
18-
include 'spring-rabbit-junit'
19-
include 'spring-rabbit-test'
15+
rootDir.eachDir { dir ->
16+
if (dir.name.startsWith('spring-')) {
17+
include ":${dir.name}"
18+
}
19+
}

0 commit comments

Comments
 (0)