Skip to content

Commit

Permalink
chore: 🤖 add coroutine packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanonymous-GitHub committed Jul 16, 2024
1 parent e7c40e1 commit 6615c2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ application {
}

dependencies {
implementation(libs.kotlinx.coroutines.core)
implementation(libs.kotlinx.coroutines.core.jvm)
testImplementation(libs.kotlin.test)
testImplementation(libs.kotlin.test.junit5)
}
Expand Down
3 changes: 3 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
[versions]
kotlin = "2.0.0"
coroutines = "1.9.0-RC"
gradle-ktlint = "12.1.1"
antlr = "4.13.1"

[libraries]
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
kotlinx-coroutines-core-jvm = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm", version.ref = "coroutines" }
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
kotlin-test-junit5 = { module = "org.jetbrains.kotlin:kotlin-test-junit5", version.ref = "kotlin" }
antlr = { group = "org.antlr", name = "antlr4-runtime", version.ref = "antlr" }
Expand Down

0 comments on commit 6615c2f

Please sign in to comment.