summaryrefslogtreecommitdiff
path: root/opendc-format
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-format
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-format')
-rw-r--r--opendc-format/build.gradle.kts10
1 files changed, 5 insertions, 5 deletions
diff --git a/opendc-format/build.gradle.kts b/opendc-format/build.gradle.kts
index ea43275a..cfe849e2 100644
--- a/opendc-format/build.gradle.kts
+++ b/opendc-format/build.gradle.kts
@@ -30,11 +30,11 @@ plugins {
}
dependencies {
- api(platform(project(":opendc-platform")))
- api(project(":opendc-compute:opendc-compute-api"))
- api(project(":opendc-workflow:opendc-workflow-api"))
- implementation(project(":opendc-simulator:opendc-simulator-compute"))
- implementation(project(":opendc-compute:opendc-compute-simulator"))
+ api(platform(projects.opendcPlatform))
+ api(projects.opendcCompute.opendcComputeApi)
+ api(projects.opendcWorkflow.opendcWorkflowApi)
+ implementation(projects.opendcSimulator.opendcSimulatorCompute)
+ implementation(projects.opendcCompute.opendcComputeSimulator)
api("com.fasterxml.jackson.module:jackson-module-kotlin:${versions["jackson-module-kotlin"]}")
implementation("org.apache.parquet:parquet-avro:${versions["parquet-avro"]}")