summaryrefslogtreecommitdiff
path: root/simulator/opendc-harness
diff options
context:
space:
mode:
Diffstat (limited to 'simulator/opendc-harness')
-rw-r--r--simulator/opendc-harness/build.gradle.kts16
1 files changed, 7 insertions, 9 deletions
diff --git a/simulator/opendc-harness/build.gradle.kts b/simulator/opendc-harness/build.gradle.kts
index 359d2384..fd692237 100644
--- a/simulator/opendc-harness/build.gradle.kts
+++ b/simulator/opendc-harness/build.gradle.kts
@@ -24,24 +24,22 @@ description = "Harness for defining repeatable experiments using OpenDC"
/* Build configuration */
plugins {
- `kotlin-library-convention`
+ `kotlin-library-conventions`
+ `testing-conventions`
}
dependencies {
- api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Library.KOTLINX_COROUTINES}")
- api("org.junit.platform:junit-platform-commons:${Library.JUNIT_PLATFORM}")
+ api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.KOTLINX_COROUTINES}")
+ api("org.junit.platform:junit-platform-commons:${Versions.JUNIT_PLATFORM}")
implementation("io.github.classgraph:classgraph:4.8.98")
implementation("me.tongfei:progressbar:0.9.0")
implementation("io.github.microutils:kotlin-logging:2.0.4")
implementation("com.github.ajalt.clikt:clikt:3.1.0")
- api("org.junit.platform:junit-platform-engine:${Library.JUNIT_PLATFORM}")
- api("org.junit.platform:junit-platform-suite-api:${Library.JUNIT_PLATFORM}")
- api("org.junit.platform:junit-platform-launcher:${Library.JUNIT_PLATFORM}")
+ api("org.junit.platform:junit-platform-engine:${Versions.JUNIT_PLATFORM}")
+ api("org.junit.platform:junit-platform-suite-api:${Versions.JUNIT_PLATFORM}")
+ api("org.junit.platform:junit-platform-launcher:${Versions.JUNIT_PLATFORM}")
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.14.0")
-
- testImplementation("org.junit.jupiter:junit-jupiter-api:${Library.JUNIT_JUPITER}")
- testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${Library.JUNIT_JUPITER}")
}