diff options
| -rw-r--r-- | simulator/opendc/opendc-format/build.gradle.kts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/simulator/opendc/opendc-format/build.gradle.kts b/simulator/opendc/opendc-format/build.gradle.kts index 4cccd302..b80e14b9 100644 --- a/simulator/opendc/opendc-format/build.gradle.kts +++ b/simulator/opendc/opendc-format/build.gradle.kts @@ -33,7 +33,9 @@ dependencies { api(project(":opendc:opendc-core")) api(project(":opendc:opendc-compute")) api(project(":opendc:opendc-workflows")) - api("com.fasterxml.jackson.module:jackson-module-kotlin:2.9.8") + api("com.fasterxml.jackson.module:jackson-module-kotlin:2.9.8") { + exclude("org.jetbrains.kotlin", module = "kotlin-reflect") + } implementation(kotlin("reflect")) testImplementation("org.junit.jupiter:junit-jupiter-api:${Library.JUNIT_JUPITER}") |
