diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-04 14:40:46 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-18 14:53:46 +0200 |
| commit | ef3868ec729f7ce3f5976d4f9a0c8b95098d9857 (patch) | |
| tree | 52a7eeba4e223a2a0e9637ba3f705b5bbce8a230 /opendc-format | |
| parent | eac80eaa36560dc43e338ade58267860865d1c48 (diff) | |
build: Update to Kotlin 1.5.0
Diffstat (limited to 'opendc-format')
| -rw-r--r-- | opendc-format/build.gradle.kts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/opendc-format/build.gradle.kts b/opendc-format/build.gradle.kts index 2647c834..e95cb666 100644 --- a/opendc-format/build.gradle.kts +++ b/opendc-format/build.gradle.kts @@ -35,7 +35,10 @@ dependencies { api(projects.opendcWorkflow.opendcWorkflowApi) implementation(projects.opendcSimulator.opendcSimulatorCompute) implementation(projects.opendcCompute.opendcComputeSimulator) - api(libs.jackson.module.kotlin) + api(libs.jackson.module.kotlin) { + exclude(group = "org.jetbrains.kotlin", module = "kotlin-reflect") + } + implementation(kotlin("reflect")) implementation(libs.parquet) implementation(libs.hadoop.client) { |
