From 71a755b4daf0846c867834b5a0d86297ac7d0667 Mon Sep 17 00:00:00 2001 From: Michael Plump Date: Mon, 18 Mar 2024 12:14:38 -0700 Subject: [PATCH] Update the IntelliJ plugin to gfj 1.21.0. PiperOrigin-RevId: 616908365 --- idea_plugin/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/idea_plugin/build.gradle.kts b/idea_plugin/build.gradle.kts index 0c3ae944e..05010fe3c 100644 --- a/idea_plugin/build.gradle.kts +++ b/idea_plugin/build.gradle.kts @@ -22,7 +22,7 @@ apply(plugin = "java") repositories { mavenCentral() } -val googleJavaFormatVersion = "1.20.0" +val googleJavaFormatVersion = "1.21.0" java { sourceCompatibility = JavaVersion.VERSION_11 @@ -62,5 +62,5 @@ tasks { dependencies { implementation("com.google.googlejavaformat:google-java-format:${googleJavaFormatVersion}") testImplementation("junit:junit:4.13.2") - testImplementation("com.google.truth:truth:1.4.1") + testImplementation("com.google.truth:truth:1.4.2") }