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 IdeaPlugin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import org.jetbrains.changelog.Changelog
import org.jetbrains.changelog.tasks.GetChangelogTask
import org.jetbrains.intellij.platform.gradle.extensions.excludeCoroutines
import org.jetbrains.intellij.platform.gradle.extensions.excludeKotlinStdlib

/*
* Copyright 2025 Eduard Wolf
Expand Down Expand Up @@ -70,8 +72,6 @@ dependencies {
// Configure Gradle IntelliJ Plugin
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin.html#setup
intellijPlatform {
// needed until 2025.3 can be targeted
@Suppress("DEPRECATION")
intellijIdeaCommunity("2025.2.2")

bundledPlugins("org.jetbrains.kotlin")
Expand All @@ -80,15 +80,15 @@ dependencies {
compileOnly(libs.kotlinx.coroutines)
}
implementation(project(":scripting-definition")) {
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
excludeKotlinStdlib()
excludeCoroutines()
exclude(group = "org.jetbrains.kotlin", module = "kotlin-scripting-common")
exclude(group = "org.jetbrains.kotlin", module = "kotlin-scripting-jvm")
exclude(group = "org.jetbrains.kotlin", module = "kotlin-script-runtime")
exclude(group = "org.jetbrains.kotlin", module = "kotlin-scripting-dependencies-maven")
exclude(group = "org.jetbrains.kotlinx", module = "kotlinx-coroutines-core")
}
implementation(libs.kotlin.scripting.dependencies.maven.all) {
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
excludeKotlinStdlib()
exclude(group = "org.jetbrains.kotlin", module = "kotlin-scripting-common")
exclude(group = "org.jetbrains.kotlin", module = "kotlin-scripting-jvm")
exclude(group = "org.jetbrains.kotlin", module = "kotlin-script-runtime")
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
changelog = "2.2.1"
clikt = "5.0.3"
intellij-platform = "2.9.0"
intellij-platform = "2.10.2"
kotlin = "2.2.21"
kotlinx-coroutines = "1.10.2"
logback = "1.5.20"
Expand Down