From 3fe163bd894587db524f26fe844765118dce9319 Mon Sep 17 00:00:00 2001 From: Michael Plump Date: Wed, 21 Aug 2024 10:08:23 -0700 Subject: [PATCH] Fix the until-build property of the IntelliJ plugin. Setting it to "" creates a broken plugin, but omitting it sets it to the same as since-build. So apparently you have to do this. PiperOrigin-RevId: 665927556 --- idea_plugin/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/idea_plugin/build.gradle.kts b/idea_plugin/build.gradle.kts index 20ac33ffb..c7d1d4ba1 100644 --- a/idea_plugin/build.gradle.kts +++ b/idea_plugin/build.gradle.kts @@ -42,6 +42,7 @@ intellijPlatform { version = "${googleJavaFormatVersion}.0" ideaVersion { sinceBuild = "223" + untilBuild = provider { null } } }