summaryrefslogtreecommitdiff
path: root/simulator/opendc-workflows
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-workflows
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-workflows')
-rw-r--r--simulator/opendc-workflows/build.gradle.kts15
1 files changed, 5 insertions, 10 deletions
diff --git a/simulator/opendc-workflows/build.gradle.kts b/simulator/opendc-workflows/build.gradle.kts
index e9c85de5..b4ffac7d 100644
--- a/simulator/opendc-workflows/build.gradle.kts
+++ b/simulator/opendc-workflows/build.gradle.kts
@@ -24,7 +24,8 @@ description = "Workflow service for OpenDC"
/* Build configuration */
plugins {
- `kotlin-library-convention`
+ `kotlin-library-conventions`
+ `testing-conventions`
}
dependencies {
@@ -32,17 +33,11 @@ dependencies {
api(project(":opendc-compute:opendc-compute-core"))
api(project(":opendc-trace:opendc-trace-core"))
implementation(project(":opendc-utils"))
- implementation("io.github.microutils:kotlin-logging:1.7.9")
+ implementation("io.github.microutils:kotlin-logging:${versions.kotlinLogging}")
testImplementation(project(":opendc-simulator:opendc-simulator-core"))
testImplementation(project(":opendc-compute:opendc-compute-simulator"))
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"))
- testRuntimeOnly("org.slf4j:slf4j-simple:${Library.SLF4J}")
- 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}")
+ testImplementation("com.fasterxml.jackson.module:jackson-module-kotlin:${versions["jackson-module-kotlin"]}")
+ testRuntimeOnly("org.slf4j:slf4j-simple:${versions.slf4j}")
}