ci: [NO BACKPORT] switch to IDE 2025.1
This commit is contained in:
parent
c524bbf899
commit
f28cf77347
4 changed files with 15 additions and 7 deletions
|
@ -6,8 +6,8 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
|
|||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
|
||||
|
||||
plugins {
|
||||
kotlin("jvm") version "2.0.21" apply false
|
||||
kotlin("plugin.serialization") version "2.0.21" apply false
|
||||
kotlin("jvm") version "2.1.10" apply false
|
||||
kotlin("plugin.serialization") version "2.1.10" apply false
|
||||
id("org.jetbrains.intellij.platform") version "2.5.0"
|
||||
id("org.jetbrains.changelog") version "2.2.1"
|
||||
id("org.jetbrains.grammarkit") version "2022.3.2.2" apply false
|
||||
|
|
|
@ -9,12 +9,15 @@ plugins {
|
|||
|
||||
val ideaCommunityVersion: String by project
|
||||
val useInstaller = property("useInstaller").toString().toBoolean()
|
||||
val serializationVersion: String by project
|
||||
|
||||
dependencies {
|
||||
intellijPlatform {
|
||||
create(IntelliJPlatformType.IntellijIdeaCommunity, ideaCommunityVersion, useInstaller = useInstaller)
|
||||
}
|
||||
compileOnly("org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3")
|
||||
compileOnly("org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:$serializationVersion") {
|
||||
isTransitive = false
|
||||
}
|
||||
}
|
||||
|
||||
//region grammars
|
||||
|
|
|
@ -3,11 +3,11 @@ pluginRepositoryUrl=https://github.com/FalsePattern/ZigBrains
|
|||
|
||||
pluginVersion=25.0.2
|
||||
|
||||
pluginSinceBuild=243
|
||||
pluginSinceBuild=251
|
||||
pluginUntilBuild=
|
||||
|
||||
ideaCommunityVersion=2024.3
|
||||
clionVersion=2024.3
|
||||
ideaCommunityVersion=2025.1
|
||||
clionVersion=2025.1
|
||||
useInstaller=true
|
||||
javaVersion=21
|
||||
# ideaCommunity / clion
|
||||
|
@ -17,6 +17,8 @@ lsp4jVersion=0.21.1
|
|||
lsp4ijVersion=0.12.0
|
||||
lsp4ijNightly=false
|
||||
|
||||
serializationVersion=1.7.3
|
||||
|
||||
kotlin.stdlib.default.dependency=false
|
||||
kotlin.code.style=official
|
||||
org.gradle.configuration-cache=true
|
||||
|
|
|
@ -8,12 +8,15 @@ val lsp4ijVersion: String by project
|
|||
val lsp4jVersion: String by project
|
||||
val ideaCommunityVersion: String by project
|
||||
val useInstaller = property("useInstaller").toString().toBoolean()
|
||||
val serializationVersion: String by project
|
||||
|
||||
dependencies {
|
||||
intellijPlatform {
|
||||
create(IntelliJPlatformType.IntellijIdeaCommunity, ideaCommunityVersion, useInstaller = useInstaller)
|
||||
}
|
||||
compileOnly("org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3")
|
||||
compileOnly("org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:$serializationVersion") {
|
||||
isTransitive = false
|
||||
}
|
||||
compileOnly("com.redhat.devtools.intellij:lsp4ij:$lsp4ijVersion")
|
||||
compileOnly("org.eclipse.lsp4j:org.eclipse.lsp4j:$lsp4jVersion")
|
||||
implementation(project(":core")) {
|
||||
|
|
Loading…
Add table
Reference in a new issue