summaryrefslogtreecommitdiff
path: root/simulator/opendc-simulator/opendc-simulator-compute
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-02-23 21:55:50 +0100
committerGitHub <noreply@github.com>2021-02-23 21:55:50 +0100
commit4a4e724bee6ccfbf961b750b1f8cf56eaf7d3b5e (patch)
treecbbbcd759f16b8d0aa87c41b7f10dcc5fdf7087a /simulator/opendc-simulator/opendc-simulator-compute
parent60a0cf76bcd5b5c8b1b5a912b2337266e87b5321 (diff)
parent15fcd1a10018605f59ca7a644b8f3b3960e7b6b0 (diff)
harness: Perform several improvements
This commit performs several improvements to the OpenDC harness and modules utilizing the harness.
Diffstat (limited to 'simulator/opendc-simulator/opendc-simulator-compute')
-rw-r--r--simulator/opendc-simulator/opendc-simulator-compute/build.gradle.kts8
1 files changed, 3 insertions, 5 deletions
diff --git a/simulator/opendc-simulator/opendc-simulator-compute/build.gradle.kts b/simulator/opendc-simulator/opendc-simulator-compute/build.gradle.kts
index 844a7c6d..19af6fe8 100644
--- a/simulator/opendc-simulator/opendc-simulator-compute/build.gradle.kts
+++ b/simulator/opendc-simulator/opendc-simulator-compute/build.gradle.kts
@@ -23,14 +23,12 @@
description = "Library for simulation of cloud computing components"
plugins {
- `kotlin-library-convention`
+ `kotlin-library-conventions`
+ `testing-conventions`
}
dependencies {
+ api(platform(project(":opendc-platform")))
api(project(":opendc-simulator:opendc-simulator-core"))
implementation(project(":opendc-utils"))
-
- 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}")
}