Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fun properties(key: String) = project.findProperty(key).toString()
plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "2.3.20"
id("org.jetbrains.intellij.platform") version "2.13.1"
id("org.jetbrains.intellij.platform") version "2.14.0"
id("org.jetbrains.changelog") version "2.5.0"
}

Expand All @@ -27,8 +27,8 @@ dependencies {
val version = providers.gradleProperty("platformVersion")
val type = providers.gradleProperty("platformType")
create(type, version) {
useInstaller = false
useCache = true
useInstaller.set(true)
useCache.set(true)
}

bundledPlugins("com.intellij.java", "com.jetbrains.plugins.webDeployment")
Expand Down Expand Up @@ -61,8 +61,8 @@ intellijPlatform {
pluginVerification {
ides {
create(type, version) {
useInstaller = false
useCache = true
useInstaller.set(true)
useCache.set(true)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pluginUntilBuild = 299.*

# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
platformType = IU
platformVersion = 2025.3.4
platformVersion = 2026.1

# Java language level used to compile sources and to generate the files for
javaVersion = 21
Expand Down
Loading