summaryrefslogtreecommitdiff
path: root/simulator/opendc-workflows/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'simulator/opendc-workflows/build.gradle.kts')
-rw-r--r--simulator/opendc-workflows/build.gradle.kts8
1 files changed, 6 insertions, 2 deletions
diff --git a/simulator/opendc-workflows/build.gradle.kts b/simulator/opendc-workflows/build.gradle.kts
index 97c588da..f61bdac6 100644
--- a/simulator/opendc-workflows/build.gradle.kts
+++ b/simulator/opendc-workflows/build.gradle.kts
@@ -29,11 +29,15 @@ plugins {
dependencies {
api(project(":opendc-core"))
- api(project(":opendc-compute"))
+ api(project(":opendc-compute:opendc-compute-core"))
implementation(project(":opendc-utils"))
- testImplementation(project(":opendc-simulator"))
+ testImplementation(project(":opendc-simulator:opendc-simulator-core"))
testImplementation(project(":opendc-format"))
+ testImplementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.9.8") {
+ exclude("org.jetbrains.kotlin", module = "kotlin-reflect")
+ }
+ testImplementation(kotlin("reflect"))
testImplementation("org.junit.jupiter:junit-jupiter-api:${Library.JUNIT_JUPITER}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${Library.JUNIT_JUPITER}")
testImplementation("org.junit.platform:junit-platform-launcher:${Library.JUNIT_PLATFORM}")