From 365b58eb560ab4fbc7a0dc185f393d468682251c Mon Sep 17 00:00:00 2001 From: Alex Plate Date: Fri, 15 Nov 2024 20:54:07 +0200 Subject: [PATCH] Update build.gradle checker --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 08abc155db..a194361524 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -136,7 +136,7 @@ dependencies { // This check intentionally has a pattern where we explicitly specify if to use the JSON plugin for each // supported version or not to prevent developers from figuring out what happened with JSON. when (ideaVersion) { - "2024.2.1" -> { /* Nothing */ } + "2024.2.1", "2024.3" -> { /* Nothing */ } "LATEST-EAP-SNAPSHOT" -> bundledPlugins("com.intellij.modules.json") else -> error("Unsupported version: $ideaVersion") }