summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-runner/build.gradle.kts
diff options
context:
space:
mode:
authorvincent van beek <vincent@vlogic.nl>2026-04-15 16:19:02 +0200
committerGitHub <noreply@github.com>2026-04-15 16:19:02 +0200
commit11e355321db20b70c76c35b6e8fc36dbb9d97fc6 (patch)
treef12b8c8c2b6a642b315f2e4a7e54274bbcdb60be /opendc-web/opendc-web-runner/build.gradle.kts
parent3e52cd36bed9455105f4a8c3d83ec805c1fb7b70 (diff)
add a job report to the scenario overview with details and time data (#406)
* add a job report to the scenario overview with details and time data * create Report data class
Diffstat (limited to 'opendc-web/opendc-web-runner/build.gradle.kts')
-rw-r--r--opendc-web/opendc-web-runner/build.gradle.kts3
1 files changed, 3 insertions, 0 deletions
diff --git a/opendc-web/opendc-web-runner/build.gradle.kts b/opendc-web/opendc-web-runner/build.gradle.kts
index a02030d9..5c8e9043 100644
--- a/opendc-web/opendc-web-runner/build.gradle.kts
+++ b/opendc-web/opendc-web-runner/build.gradle.kts
@@ -25,6 +25,7 @@ description = "Experiment runner for OpenDC"
// Build configuration
plugins {
`kotlin-conventions`
+ `testing-conventions`
distribution
}
@@ -64,6 +65,8 @@ dependencies {
cliRuntimeOnly(libs.log4j.core)
cliRuntimeOnly(libs.log4j.slf4j)
cliRuntimeOnly(libs.sentry.log4j2)
+
+ testImplementation(libs.log4j.core)
}
val createCli by tasks.creating(CreateStartScripts::class) {