We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8afca42 commit 82dfcbcCopy full SHA for 82dfcbc
mps-model-adapters-plugin/build.gradle.kts
@@ -7,7 +7,13 @@ plugins {
7
}
8
9
dependencies {
10
- testImplementation(project(":mps-model-adapters"))
+ testImplementation(project(":mps-model-adapters")) {
11
+ // MPS provides the Kotlin standard library and coroutines.
12
+ // Bundling different versions of the same library can cause the plugin to break.
13
+ exclude(group = "org.jetbrains.kotlin")
14
+ exclude(group = "org.jetbrains.kotlinx", module = "kotlinx-coroutines-core")
15
+ exclude(group = "org.jetbrains.kotlinx", module = "kotlinx-coroutines-jdk8")
16
+ }
17
18
19
intellij {
0 commit comments