From afee4c550515dc2f6021be33f58823d279980246 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Tue, 15 Sep 2020 12:11:29 +0200 Subject: Add parser for WTA trace format This change adds a parser for the traces of the Workflow Trace Archive to be used in OpenDC. --- simulator/opendc-format/build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'simulator/opendc-format/build.gradle.kts') diff --git a/simulator/opendc-format/build.gradle.kts b/simulator/opendc-format/build.gradle.kts index e44d68b9..38fcb329 100644 --- a/simulator/opendc-format/build.gradle.kts +++ b/simulator/opendc-format/build.gradle.kts @@ -36,6 +36,12 @@ dependencies { } implementation(kotlin("reflect")) + implementation("org.apache.parquet:parquet-avro:1.11.0") + implementation("org.apache.hadoop:hadoop-client:3.2.1") { + exclude(group = "org.slf4j", module = "slf4j-log4j12") + exclude(group = "log4j") + } + 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}") -- cgit v1.2.3