Skip to content

Commit a4daeb5

Browse files
pacphiclaude
andcommitted
Fix CI build failure and upgrade Gradle to 9.1.0
- Add duplicate handling strategy to processResources task to resolve CycloneDX BOM plugin conflict causing build failures - Upgrade Gradle wrapper from 8.12 to 9.1.0 - Update minimum Gradle version requirement in documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ed15d9a commit a4daeb5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ dependencyManagement {
4343
}
4444
}
4545

46+
processResources {
47+
duplicatesStrategy = DuplicatesStrategy.INCLUDE
48+
}
49+
4650
bootRun {
4751
systemProperties System.properties
4852
}

docs/TOOLS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Tools
44

55
* [sdkman](https://sdkman.io) 5.8.12 or better
6-
* [Gradle](https://docs.gradle.org/current/userguide/installation.html) 8.10 or better
6+
* [Gradle](https://docs.gradle.org/current/userguide/installation.html) 9.1.0 or better
77
* [JDK](http://openjdk.java.net/install/) 21 or better
88
* [git](https://git-scm.com/downloads) 2.40.0 or better
99
* [gh](https://github.com/cli/cli) 2.42.0 or better

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)