Skip to content

Commit

Permalink
fix(mps-model-adapters): exclude libraries provided by MPS from mps-m…
Browse files Browse the repository at this point in the history
…odel-adapters-plugin
  • Loading branch information
odzhychko committed Jan 9, 2025
1 parent 8afca42 commit 82dfcbc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion mps-model-adapters-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ plugins {
}

dependencies {
testImplementation(project(":mps-model-adapters"))
testImplementation(project(":mps-model-adapters")) {
// MPS provides the Kotlin standard library and coroutines.
// Bundling different versions of the same library can cause the plugin to break.
exclude(group = "org.jetbrains.kotlin")
exclude(group = "org.jetbrains.kotlinx", module = "kotlinx-coroutines-core")
exclude(group = "org.jetbrains.kotlinx", module = "kotlinx-coroutines-jdk8")
}
}

intellij {
Expand Down

0 comments on commit 82dfcbc

Please sign in to comment.