summaryrefslogtreecommitdiff
path: root/simulator/opendc-format/build.gradle.kts
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2020-09-15 12:11:29 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-10-01 10:47:43 +0200
commitafee4c550515dc2f6021be33f58823d279980246 (patch)
tree99eac54383f4d8a3dcbdb8e4c58ce2ee6b3c8d5f /simulator/opendc-format/build.gradle.kts
parent5d71ef4bd6ca84cf5f445f7ba4bb5f7a1e181b64 (diff)
Add parser for WTA trace format
This change adds a parser for the traces of the Workflow Trace Archive to be used in OpenDC.
Diffstat (limited to 'simulator/opendc-format/build.gradle.kts')
-rw-r--r--simulator/opendc-format/build.gradle.kts6
1 files changed, 6 insertions, 0 deletions
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}")