build: clear Gradle 10 deprecations, bump wrapper to 9.7.0 - #25
Conversation
build.gradle used Groovy space-assignment for sourceCompatibility, targetCompatibility, name, url, and a task's description, plus multi-string group:/name:/version: dependency notation - all removed in Gradle 10. Checked with `./gradlew help --warning-mode=all` (swig/cmake toolchain not available here, so the native-build tasks weren't exercised, but all offending lines were script-level assignments evaluated at configuration time regardless). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
Included review availability: Your plan includes up to 1 review per rolling hour; 0 remain after this review. 📝 WalkthroughSummary by CodeRabbit
WalkthroughThe build script now uses equivalent Gradle assignment syntax. Java 17 settings and configured values remain unchanged. The Gradle wrapper distribution updates from 9.6.1 to 9.7.0. ChangesGradle modernization
Estimated code review effort: 1 (Trivial) | ~5 minutes Merge Risk: ⚪ Minimal · up to This localized build-configuration cleanup and Gradle wrapper update has no actionable merge-blocking risk remaining after normal checks and review. Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
build.gradle: Groovy space-assignment (sourceCompatibility,targetCompatibility,name,url, a taskdescription) and multi-stringgroup:/name:/version:dependency notation.Test plan
./gradlew help --warning-mode=all— clean of Gradle-10 warnings, BUILD SUCCESSFUL. (swig/cmake not installed here, so the native-build tasks themselves weren't exercised; every fixed line was a script-level assignment evaluated during configuration regardless of which task runs.)Related