From 0a3966ac3933ae273329a3f1a106905f2f8c1a06 Mon Sep 17 00:00:00 2001 From: ab5tract Date: Thu, 14 Nov 2024 13:30:47 -0500 Subject: [PATCH] Allow all platform types --- build.gradle.kts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 61a81875..76120423 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,4 +1,5 @@ import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType +import org.jetbrains.intellij.platform.gradle.models.ProductRelease fun properties(key: String) = project.findProperty(key).toString() @@ -51,7 +52,11 @@ intellijPlatform { pluginVerification { ides { - ide(IntelliJPlatformType.IntellijIdeaCommunity, "2024.2") + select { + types = listOf(IntelliJPlatformType.values().toList().random()) + channels = listOf(ProductRelease.Channel.RELEASE) + sinceBuild = "242" + } } } }