summaryrefslogtreecommitdiff
path: root/opendc-experiments/opendc-experiments-workflow/build.gradle.kts
diff options
context:
space:
mode:
authorDante Niewenhuis <d.niewenhuis@hotmail.com>2024-01-08 13:44:09 +0100
committerGitHub <noreply@github.com>2024-01-08 13:44:09 +0100
commit616017ba78a0882fe38b9b171b2b0f68e593cd8d (patch)
tree9cc4c20078ae10d169c90cbce5b898226a7eee9d /opendc-experiments/opendc-experiments-workflow/build.gradle.kts
parentc57468c5040a838de6901972b6e49a8548d908d6 (diff)
refactored opendc-experiment-compute (#190)
* removed experiment-compute and integrated all components into opendc-compute * updated workflow gradle file * removed unneeded code
Diffstat (limited to 'opendc-experiments/opendc-experiments-workflow/build.gradle.kts')
-rw-r--r--opendc-experiments/opendc-experiments-workflow/build.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc-experiments/opendc-experiments-workflow/build.gradle.kts b/opendc-experiments/opendc-experiments-workflow/build.gradle.kts
index 4fc34d2d..a5a2ea54 100644
--- a/opendc-experiments/opendc-experiments-workflow/build.gradle.kts
+++ b/opendc-experiments/opendc-experiments-workflow/build.gradle.kts
@@ -30,7 +30,6 @@ plugins {
}
dependencies {
- api(projects.opendcExperiments.opendcExperimentsBase)
api(projects.opendcWorkflow.opendcWorkflowApi)
implementation(libs.kotlinx.coroutines)
@@ -38,4 +37,5 @@ dependencies {
implementation(projects.opendcWorkflow.opendcWorkflowService)
implementation(projects.opendcSimulator.opendcSimulatorCompute)
implementation(projects.opendcTrace.opendcTraceApi)
+ implementation(project(mapOf("path" to ":opendc-compute:opendc-compute-simulator")))
}