summaryrefslogtreecommitdiff
path: root/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts
diff options
context:
space:
mode:
authorRadu Nicolae <rnicolae04@gmail.com>2025-06-16 18:01:07 +0200
committerGitHub <noreply@github.com>2025-06-16 18:01:07 +0200
commit0df3d9ced743ac3385dd710c7133a6cf369b051c (patch)
treeeff5d6d67c275643e229731ba08c5fe7dc4ccd0a /opendc-experiments/opendc-experiments-m3sa/build.gradle.kts
parentc7e303ad1b5217e2ff24cee9538ac841d6149706 (diff)
integrated M3SA, updated with tests and CpuPowerModels
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 {