From f704b6c9364ea181496d402be74c792fbac8aecb Mon Sep 17 00:00:00 2001 From: FalsePattern Date: Thu, 7 Nov 2024 16:29:00 +0100 Subject: [PATCH] ci: [NO BACKPORT] bump to latest EAP --- build.gradle.kts | 5 +++-- cidr/build.gradle.kts | 2 +- core/build.gradle.kts | 2 +- gradle.properties | 6 +++--- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 3ca55c82..69d44554 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -88,6 +88,7 @@ allprojects { intellijPlatform { defaultRepositories() + snapshots() } } dependencies { @@ -100,8 +101,8 @@ allprojects { dependencies { intellijPlatform { when(runIdeTarget) { - "ideaCommunity" -> create(IntelliJPlatformType.IntellijIdeaCommunity, providers.gradleProperty("ideaCommunityVersion")) - "clion" -> create(IntelliJPlatformType.CLion, providers.gradleProperty("clionVersion")) + "ideaCommunity" -> create(IntelliJPlatformType.IntellijIdeaCommunity, providers.gradleProperty("ideaCommunityVersion"), useInstaller = false) + "clion" -> create(IntelliJPlatformType.CLion, providers.gradleProperty("clionVersion"), useInstaller = false) } pluginVerifier() diff --git a/cidr/build.gradle.kts b/cidr/build.gradle.kts index e440c7a4..ff4dfc87 100644 --- a/cidr/build.gradle.kts +++ b/cidr/build.gradle.kts @@ -23,7 +23,7 @@ tasks { dependencies { intellijPlatform { - create(IntelliJPlatformType.CLion, providers.gradleProperty("clionVersion")) + create(IntelliJPlatformType.CLion, providers.gradleProperty("clionVersion"), useInstaller = false) bundledPlugins("com.intellij.clion", "com.intellij.cidr.base", "com.intellij.nativeDebug") } implementation(project(":core")) diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 287723ce..e67b4b5f 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -12,7 +12,7 @@ val lsp4jVersion: String by project dependencies { intellijPlatform { - create(IntelliJPlatformType.IntellijIdeaCommunity, providers.gradleProperty("ideaCommunityVersion")) + create(IntelliJPlatformType.IntellijIdeaCommunity, providers.gradleProperty("ideaCommunityVersion"), useInstaller = false) } compileOnly("com.redhat.devtools.intellij:lsp4ij:$lsp4ijVersion") compileOnly("org.eclipse.lsp4j:org.eclipse.lsp4j:$lsp4jVersion") diff --git a/gradle.properties b/gradle.properties index 732623cc..4f818dc0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,11 +3,11 @@ pluginRepositoryUrl=https://github.com/FalsePattern/ZigBrains pluginVersion=20.0.0-dev -pluginSinceBuild=242 +pluginSinceBuild=243 pluginUntilBuild= -ideaCommunityVersion=2024.2.4 -clionVersion=2024.2.3 +ideaCommunityVersion=243.21565.23-EAP-SNAPSHOT +clionVersion=243.21565.87-EAP-SNAPSHOT javaVersion=21 # ideaCommunity / clion runIdeTarget=clion