ci: [NO BACKPORT] bump to latest EAP

This commit is contained in:
FalsePattern 2024-11-07 16:29:00 +01:00
parent de8c112748
commit f704b6c936
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
4 changed files with 8 additions and 7 deletions

View file

@ -88,6 +88,7 @@ allprojects {
intellijPlatform { intellijPlatform {
defaultRepositories() defaultRepositories()
snapshots()
} }
} }
dependencies { dependencies {
@ -100,8 +101,8 @@ allprojects {
dependencies { dependencies {
intellijPlatform { intellijPlatform {
when(runIdeTarget) { when(runIdeTarget) {
"ideaCommunity" -> create(IntelliJPlatformType.IntellijIdeaCommunity, providers.gradleProperty("ideaCommunityVersion")) "ideaCommunity" -> create(IntelliJPlatformType.IntellijIdeaCommunity, providers.gradleProperty("ideaCommunityVersion"), useInstaller = false)
"clion" -> create(IntelliJPlatformType.CLion, providers.gradleProperty("clionVersion")) "clion" -> create(IntelliJPlatformType.CLion, providers.gradleProperty("clionVersion"), useInstaller = false)
} }
pluginVerifier() pluginVerifier()

View file

@ -23,7 +23,7 @@ tasks {
dependencies { dependencies {
intellijPlatform { 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") bundledPlugins("com.intellij.clion", "com.intellij.cidr.base", "com.intellij.nativeDebug")
} }
implementation(project(":core")) implementation(project(":core"))

View file

@ -12,7 +12,7 @@ val lsp4jVersion: String by project
dependencies { dependencies {
intellijPlatform { intellijPlatform {
create(IntelliJPlatformType.IntellijIdeaCommunity, providers.gradleProperty("ideaCommunityVersion")) create(IntelliJPlatformType.IntellijIdeaCommunity, providers.gradleProperty("ideaCommunityVersion"), useInstaller = false)
} }
compileOnly("com.redhat.devtools.intellij:lsp4ij:$lsp4ijVersion") compileOnly("com.redhat.devtools.intellij:lsp4ij:$lsp4ijVersion")
compileOnly("org.eclipse.lsp4j:org.eclipse.lsp4j:$lsp4jVersion") compileOnly("org.eclipse.lsp4j:org.eclipse.lsp4j:$lsp4jVersion")

View file

@ -3,11 +3,11 @@ pluginRepositoryUrl=https://github.com/FalsePattern/ZigBrains
pluginVersion=20.0.0-dev pluginVersion=20.0.0-dev
pluginSinceBuild=242 pluginSinceBuild=243
pluginUntilBuild= pluginUntilBuild=
ideaCommunityVersion=2024.2.4 ideaCommunityVersion=243.21565.23-EAP-SNAPSHOT
clionVersion=2024.2.3 clionVersion=243.21565.87-EAP-SNAPSHOT
javaVersion=21 javaVersion=21
# ideaCommunity / clion # ideaCommunity / clion
runIdeTarget=clion runIdeTarget=clion