diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-01-06 22:52:07 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-01-07 23:19:38 +0100 |
| commit | 127686493ff44f536ee134575cd23bc96eebf075 (patch) | |
| tree | 96177e6b278ea10c598db74c26653ae6dcb2ce91 /simulator/opendc-harness/build.gradle.kts | |
| parent | cba8446a04ef77d36596774cf0bbd5d3a6f0c70f (diff) | |
Add rudimentary console runner for harness
Diffstat (limited to 'simulator/opendc-harness/build.gradle.kts')
| -rw-r--r-- | simulator/opendc-harness/build.gradle.kts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/simulator/opendc-harness/build.gradle.kts b/simulator/opendc-harness/build.gradle.kts index 76d1f2cd..359d2384 100644 --- a/simulator/opendc-harness/build.gradle.kts +++ b/simulator/opendc-harness/build.gradle.kts @@ -30,14 +30,18 @@ plugins { dependencies { api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Library.KOTLINX_COROUTINES}") api("org.junit.platform:junit-platform-commons:${Library.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}") + 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}") } |
