Gradle deprecation warnings: replace Groovy DSL property assignment syntax
Open
- Dominant language
- Java
- Stars
- 9.2k
- Forks
- 3.5k
- Avg merge
- 2d 11h
- Merged PRs (30d)
- 132
Description
While building Iceberg with recent Gradle versions, I see deprecation warnings:
"Properties should be assigned using the 'propName = value' syntax..."
This occurs due to usage of deprecated Groovy DSL syntax like:
exceptionFormat 'full'
Suggested fix:
Replace with:
exceptionFormat = 'full'
This will be required for Gradle 10 compatibility.
Contributor guide
Assessment
This issue has not been assessed yet.