diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-01-07 00:27:42 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-01-07 23:25:50 +0100 |
| commit | 885730e31a2bb987f2dcc8a90921e2f06a8c857a (patch) | |
| tree | 82ddeaced2a42dd49a633a0669fbd8fedd1c167d /simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts | |
| parent | 127686493ff44f536ee134575cd23bc96eebf075 (diff) | |
Migrate OpenDC SC20 experiments to experiment harness
This change refactors the SC20 experiments in OpenDC to use the
standalone experiment harness as opposed to its built-in ad-hoc
experiment framework.
Diffstat (limited to 'simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts')
| -rw-r--r-- | simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts b/simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts index 3b682668..b94207ba 100644 --- a/simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts +++ b/simulator/opendc-experiments/opendc-experiments-sc20/build.gradle.kts @@ -29,21 +29,22 @@ plugins { } application { - mainClassName = "org.opendc.experiments.sc20.MainKt" + mainClass.set("org.opendc.harness.runner.console.ConsoleRunnerKt") applicationDefaultJvmArgs = listOf("-Xms2500M") } dependencies { api(project(":opendc-core")) + api(project(":opendc-harness")) implementation(project(":opendc-format")) implementation(project(":opendc-simulator:opendc-simulator-core")) implementation(project(":opendc-simulator:opendc-simulator-compute")) implementation(project(":opendc-simulator:opendc-simulator-failures")) implementation(project(":opendc-compute:opendc-compute-simulator")) - implementation("com.github.ajalt:clikt:2.6.0") - implementation("me.tongfei:progressbar:0.8.1") - implementation("io.github.microutils:kotlin-logging:1.7.9") + implementation("io.github.microutils:kotlin-logging:2.0.4") + implementation("me.tongfei:progressbar:0.9.0") + implementation("com.github.ajalt.clikt:clikt:3.1.0") implementation("org.apache.parquet:parquet-avro:1.11.0") implementation("org.apache.hadoop:hadoop-client:3.2.1") { @@ -51,8 +52,6 @@ dependencies { exclude(group = "log4j") } - runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.13.1") - testImplementation("org.junit.jupiter:junit-jupiter-api:${Library.JUNIT_JUPITER}") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${Library.JUNIT_JUPITER}") testImplementation("org.junit.platform:junit-platform-launcher:${Library.JUNIT_PLATFORM}") |
