From 72999bba43cc0e98f330fff060858f8bcccb76e2 Mon Sep 17 00:00:00 2001 From: Baron Roberts Date: Wed, 14 Feb 2024 09:48:09 -0800 Subject: [PATCH] Do not upgrade Checkstyle until 14123 is properly fixed. --- build.gradle.kts | 6 ------ gradle/libs.versions.toml | 3 ++- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1f0f03c..4bcfbfe 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -48,12 +48,6 @@ dependencies { testRuntimeOnly(libs.junitLauncher) spotbugsPlugins(libs.spotbugsContrib) - - modules { - module("com.google.collections:google-collections") { - replacedBy("com.google.guava:guava", "google-collections is now part of Guava") - } - } } checkstyle { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index c2717e9..8964761 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,6 +1,7 @@ [versions] java = "17" -checkstyle = "10.13.0" +# Do not upgrade Checkstyle until https://github.com/checkstyle/checkstyle/issues/14123 is properly fixed +checkstyle = "10.12.5" jacoco = "0.8.11" junit = "5.10.2" spotbugs = "4.8.3"