This is an automated email from the ASF dual-hosted git repository.
huaxingao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new 9eded8add2 Build: Don't override checkstyle version in
baseline-checkstyle plugin (#14365)
9eded8add2 is described below
commit 9eded8add2ce62e0d1f3b5ef41c97bc3e9d19768
Author: Manu Zhang <[email protected]>
AuthorDate: Sun Oct 19 13:21:45 2025 +0800
Build: Don't override checkstyle version in baseline-checkstyle plugin
(#14365)
---
baseline.gradle | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/baseline.gradle b/baseline.gradle
index 1c0aca9401..c07d0bda18 100644
--- a/baseline.gradle
+++ b/baseline.gradle
@@ -52,15 +52,6 @@ subprojects {
apply plugin: 'com.palantir.baseline-exact-dependencies'
apply plugin: 'com.diffplug.spotless'
- pluginManager.withPlugin('com.palantir.baseline-checkstyle') {
- checkstyle {
- // com.palantir.baseline:gradle-baseline-java:4.42.0 (the last version
supporting Java 8) pulls
- // in an old version of the checkstyle(9.1), which has this OutOfMemory
bug https://github.com/checkstyle/checkstyle/issues/10934.
- // So, override its checkstyle version using CheckstyleExtension to 9.3
(the latest java 8 supported version) which contains a fix.
- toolVersion '9.3'
- }
- }
-
pluginManager.withPlugin('com.diffplug.spotless') {
spotless {
java {