Skip to content

Commit 52716bd

Browse files
Merge pull request #1278 from modelix/dependabot/gradle/kotlinCoroutines-1.10.1
build(deps): bump kotlinCoroutines from 1.9.0 to 1.10.1
2 parents e1ad8a4 + 82dfcbc commit 52716bd

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ docker-compose = { id = "com.avast.gradle.docker-compose" , version = "0.17.12"
2525

2626
[versions]
2727
kotlin = "2.1.0"
28-
kotlinCoroutines="1.9.0"
28+
kotlinCoroutines="1.10.1"
2929
ktor="3.0.3"
3030
kotlinHtml="0.8.0"
3131
kotlinSerialization="1.7.3"

mps-model-adapters-plugin/build.gradle.kts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ plugins {
77
}
88

99
dependencies {
10-
testImplementation(project(":mps-model-adapters"))
10+
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+
}
1117
}
1218

1319
intellij {

0 commit comments

Comments
 (0)