summaryrefslogtreecommitdiff
path: root/opendc-experiments
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-experiments')
-rw-r--r--opendc-experiments/opendc-experiments-capelin/build.gradle.kts17
-rw-r--r--opendc-experiments/opendc-experiments-energy21/build.gradle.kts18
-rw-r--r--opendc-experiments/opendc-experiments-serverless20/build.gradle.kts13
3 files changed, 23 insertions, 25 deletions
diff --git a/opendc-experiments/opendc-experiments-capelin/build.gradle.kts b/opendc-experiments/opendc-experiments-capelin/build.gradle.kts
index 06a35c4b..ca4aa35f 100644
--- a/opendc-experiments/opendc-experiments-capelin/build.gradle.kts
+++ b/opendc-experiments/opendc-experiments-capelin/build.gradle.kts
@@ -24,19 +24,18 @@ description = "Experiments for the Capelin work"
/* Build configuration */
plugins {
- `kotlin-library-conventions`
`experiment-conventions`
`testing-conventions`
}
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-simulator:opendc-simulator-failures"))
- implementation(project(":opendc-compute:opendc-compute-simulator"))
+ 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("io.github.microutils:kotlin-logging")
implementation("com.typesafe:config")
@@ -49,5 +48,5 @@ dependencies {
exclude(group = "log4j")
}
- implementation(project(":opendc-telemetry:opendc-telemetry-sdk"))
+ implementation(projects.opendcTelemetry.opendcTelemetrySdk)
}
diff --git a/opendc-experiments/opendc-experiments-energy21/build.gradle.kts b/opendc-experiments/opendc-experiments-energy21/build.gradle.kts
index fc37fc1c..64e52f88 100644
--- a/opendc-experiments/opendc-experiments-energy21/build.gradle.kts
+++ b/opendc-experiments/opendc-experiments-energy21/build.gradle.kts
@@ -24,20 +24,20 @@ description = "Experiments for the OpenDC Energy work"
/* Build configuration */
plugins {
- `kotlin-library-conventions`
`experiment-conventions`
`testing-conventions`
}
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")
diff --git a/opendc-experiments/opendc-experiments-serverless20/build.gradle.kts b/opendc-experiments/opendc-experiments-serverless20/build.gradle.kts
index f19d6067..c35070fe 100644
--- a/opendc-experiments/opendc-experiments-serverless20/build.gradle.kts
+++ b/opendc-experiments/opendc-experiments-serverless20/build.gradle.kts
@@ -24,18 +24,17 @@ description = "Experiments for OpenDC Serverless"
/* Build configuration */
plugins {
- `kotlin-library-conventions`
`experiment-conventions`
`testing-conventions`
}
dependencies {
- api(platform(project(":opendc-platform")))
- api(project(":opendc-harness:opendc-harness-engine"))
- implementation(project(":opendc-serverless:opendc-serverless-service"))
- implementation(project(":opendc-serverless:opendc-serverless-simulator"))
- implementation(project(":opendc-telemetry:opendc-telemetry-sdk"))
- implementation(project(":opendc-harness:opendc-harness-cli"))
+ api(platform(projects.opendcPlatform))
+ api(projects.opendcHarness.opendcHarnessApi)
+ implementation(projects.opendcSimulator.opendcSimulatorCore)
+ implementation(projects.opendcServerless.opendcServerlessService)
+ implementation(projects.opendcServerless.opendcServerlessSimulator)
+ implementation(projects.opendcTelemetry.opendcTelemetrySdk)
implementation("io.github.microutils:kotlin-logging")
implementation("com.typesafe:config")