summaryrefslogtreecommitdiff
path: root/opendc-utils
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-05-07 11:59:46 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-05-07 12:00:10 +0200
commit324d7eccf5892a509dc76c7abcecf20fec09a877 (patch)
treea3dd467efdb3f9a4fe02259f479c1211338fd9fc /opendc-utils
parentd60e230c29beeeaa825987d5abf43c1e6f450dad (diff)
build: Use Gradle version catalog
This change adds support for the Gradle version catalog feature in our build configuration. This allows us to have a single file, gradle/libs.versions.toml, which contains all the dependency versions used in this project.
Diffstat (limited to 'opendc-utils')
-rw-r--r--opendc-utils/build.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc-utils/build.gradle.kts b/opendc-utils/build.gradle.kts
index 9f712b89..800b374d 100644
--- a/opendc-utils/build.gradle.kts
+++ b/opendc-utils/build.gradle.kts
@@ -30,7 +30,7 @@ plugins {
dependencies {
api(platform(projects.opendcPlatform))
- api("org.jetbrains.kotlinx:kotlinx-coroutines-core")
+ api(libs.kotlinx.coroutines)
testImplementation(projects.opendcSimulator.opendcSimulatorCore)
}