diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-08-31 14:56:08 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-09-02 09:26:41 +0200 |
| commit | 23c1502c2668305fd5f4c38c6c794c985d2037e3 (patch) | |
| tree | ef97d7332eb64ceae13b09acdcbdd1aad03697a9 /opendc-format/build.gradle.kts | |
| parent | b0806dcf21ab811c46b715cfdff8a6307e117810 (diff) | |
refactor(trace): Move GWF trace reader into separate module
This change starts the process of moving the different trace formats into
separate modules. This change in particular moves the GWF trace format
into a new module, opendc-trace-gwf.
Furthermore, this change also implements the trace API for the GWF
module.
Diffstat (limited to 'opendc-format/build.gradle.kts')
| -rw-r--r-- | opendc-format/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc-format/build.gradle.kts b/opendc-format/build.gradle.kts index c8e30846..c1258428 100644 --- a/opendc-format/build.gradle.kts +++ b/opendc-format/build.gradle.kts @@ -39,7 +39,7 @@ dependencies { exclude(group = "org.jetbrains.kotlin", module = "kotlin-reflect") } implementation(libs.jackson.dataformat.csv) - implementation(kotlin("reflect")) + implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.30") /* This configuration is necessary for a slim dependency on Apache Parquet */ implementation(libs.parquet) { |
