diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-10-01 17:30:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-01 17:30:54 +0200 |
| commit | dff259fa1a721df3bc2601014d5749f6e620854c (patch) | |
| tree | bb246d18f86e551dd01f92658c6ef2b14a608fc6 /simulator/opendc-format/build.gradle.kts | |
| parent | 5d71ef4bd6ca84cf5f445f7ba4bb5f7a1e181b64 (diff) | |
| parent | ebd375d524714708d7b38c0117a77d50d23043a3 (diff) | |
Merge pull request #43 from atlarge-research/feat/wta-parser
Add parser for WTA traces
Diffstat (limited to 'simulator/opendc-format/build.gradle.kts')
| -rw-r--r-- | simulator/opendc-format/build.gradle.kts | 6 |
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}") |
