summaryrefslogtreecommitdiff
path: root/opendc-utils
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-05-05 20:50:18 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-05-06 14:04:05 +0200
commitd22a757a86107ee35a64e1eb23282770cdd901dd (patch)
tree0f747a501ad1c01f230df8d4f8b25fc7cdeb9c5c /opendc-utils
parent25e2fd97409311c89030e51e1a78211d335709b9 (diff)
build: Use type-safe project accessors
This change updates the build scripts to use type-safe project accessors when specifying build dependencies between modules.
Diffstat (limited to 'opendc-utils')
-rw-r--r--opendc-utils/build.gradle.kts4
1 files changed, 2 insertions, 2 deletions
diff --git a/opendc-utils/build.gradle.kts b/opendc-utils/build.gradle.kts
index 48214665..9f712b89 100644
--- a/opendc-utils/build.gradle.kts
+++ b/opendc-utils/build.gradle.kts
@@ -29,8 +29,8 @@ plugins {
}
dependencies {
- api(platform(project(":opendc-platform")))
+ api(platform(projects.opendcPlatform))
api("org.jetbrains.kotlinx:kotlinx-coroutines-core")
- testImplementation(project(":opendc-simulator:opendc-simulator-core"))
+ testImplementation(projects.opendcSimulator.opendcSimulatorCore)
}