This is an automated email from the ASF dual-hosted git repository.
maciej pushed a commit to branch java-ci
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/java-ci by this push:
new 5225c2134 remove checkstyle from examples
5225c2134 is described below
commit 5225c21342c847433bae28a61478e7d2eae71fe9
Author: Maciej Modzelewski <[email protected]>
AuthorDate: Sat Jan 31 11:03:21 2026 +0100
remove checkstyle from examples
---
examples/java/build.gradle.kts | 5 -----
1 file changed, 5 deletions(-)
diff --git a/examples/java/build.gradle.kts b/examples/java/build.gradle.kts
index 6c37cea60..258a90978 100644
--- a/examples/java/build.gradle.kts
+++ b/examples/java/build.gradle.kts
@@ -20,7 +20,6 @@
plugins {
java
id("com.diffplug.spotless") version "8.1.0"
- checkstyle
}
repositories {
@@ -46,10 +45,6 @@ spotless {
}
}
-checkstyle {
- toolVersion = "12.2.0"
-}
-
tasks.withType<JavaCompile> {
dependsOn("spotlessApply")
}