summaryrefslogtreecommitdiff
path: root/opendc-experiments/opendc-experiments-energy21
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-experiments/opendc-experiments-energy21
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-experiments/opendc-experiments-energy21')
-rw-r--r--opendc-experiments/opendc-experiments-energy21/build.gradle.kts17
1 files changed, 9 insertions, 8 deletions
diff --git a/opendc-experiments/opendc-experiments-energy21/build.gradle.kts b/opendc-experiments/opendc-experiments-energy21/build.gradle.kts
index fc37fc1c..1bebcea2 100644
--- a/opendc-experiments/opendc-experiments-energy21/build.gradle.kts
+++ b/opendc-experiments/opendc-experiments-energy21/build.gradle.kts
@@ -30,14 +30,15 @@ plugins {
}
dependencies {
- api(platform(project(":opendc-platform")))
- api(project(":opendc-harness:opendc-harness-engine"))
- implementation(project(":opendc-format"))
- implementation(project(":opendc-simulator:opendc-simulator-core"))
- implementation(project(":opendc-simulator:opendc-simulator-compute"))
- implementation(project(":opendc-compute:opendc-compute-simulator"))
- implementation(project(":opendc-experiments:opendc-experiments-capelin"))
- implementation(project(":opendc-telemetry:opendc-telemetry-sdk"))
+ api(platform(projects.opendcPlatform))
+ api(projects.opendcHarness.opendcHarnessApi)
+ implementation(projects.opendcFormat)
+ implementation(projects.opendcSimulator.opendcSimulatorCore)
+ implementation(projects.opendcSimulator.opendcSimulatorCompute)
+ implementation(projects.opendcSimulator.opendcSimulatorFailures)
+ implementation(projects.opendcCompute.opendcComputeSimulator)
+ implementation(projects.opendcExperiments.opendcExperimentsCapelin)
+ implementation(projects.opendcTelemetry.opendcTelemetrySdk)
implementation("io.github.microutils:kotlin-logging")
implementation("com.typesafe:config")