Skip to content

Commit

Permalink
Merge pull request #1278 from modelix/dependabot/gradle/kotlinCorouti…
Browse files Browse the repository at this point in the history
…nes-1.10.1

build(deps): bump kotlinCoroutines from 1.9.0 to 1.10.1
  • Loading branch information
github-actions[bot] authored Jan 13, 2025
2 parents e1ad8a4 + 82dfcbc commit 52716bd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ docker-compose = { id = "com.avast.gradle.docker-compose" , version = "0.17.12"

[versions]
kotlin = "2.1.0"
kotlinCoroutines="1.9.0"
kotlinCoroutines="1.10.1"
ktor="3.0.3"
kotlinHtml="0.8.0"
kotlinSerialization="1.7.3"
Expand Down
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 52716bd

Please sign in to comment.