summaryrefslogtreecommitdiff
path: root/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-experiments/opendc-experiments-m3sa/build.gradle.kts')
-rw-r--r--opendc-experiments/opendc-experiments-m3sa/build.gradle.kts9
1 files changed, 9 insertions, 0 deletions
diff --git a/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts b/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts
index 9347e525..e0f11a97 100644
--- a/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts
+++ b/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts
@@ -25,12 +25,17 @@ description = "Multi-Meta-Model Simulation Analysis (M3SA) used across OpenDC mo
// Build configuration
plugins {
`kotlin-library-conventions`
+ `testing-conventions`
+ `jacoco-conventions`
+ distribution
+ kotlin("plugin.serialization") version "1.9.22"
}
dependencies {
api(libs.kotlinx.coroutines)
testImplementation(projects.opendcSimulator.opendcSimulatorCore)
+ testImplementation("org.junit.jupiter:junit-jupiter")
api(projects.opendcCompute.opendcComputeSimulator)
implementation(libs.clikt)
@@ -47,6 +52,10 @@ dependencies {
runtimeOnly(libs.log4j.core)
runtimeOnly(libs.log4j.slf4j)
+
+ tasks.test {
+ useJUnitPlatform()
+ }
}
sourceSets {