diff options
Diffstat (limited to 'opendc-compute/opendc-compute-topology/build.gradle.kts')
| -rw-r--r-- | opendc-compute/opendc-compute-topology/build.gradle.kts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/opendc-compute/opendc-compute-topology/build.gradle.kts b/opendc-compute/opendc-compute-topology/build.gradle.kts index 0dedf8a9..f236cbbd 100644 --- a/opendc-compute/opendc-compute-topology/build.gradle.kts +++ b/opendc-compute/opendc-compute-topology/build.gradle.kts @@ -25,6 +25,7 @@ description = "OpenDC Compute Topology implementation" // Build configuration plugins { `kotlin-library-conventions` + kotlin("plugin.serialization") version "1.9.22" } dependencies { @@ -32,6 +33,8 @@ dependencies { implementation(projects.opendcCommon) implementation(project(mapOf("path" to ":opendc-simulator:opendc-simulator-compute"))) - implementation(libs.jackson.dataformat.csv) + implementation(libs.jackson.module.kotlin) + implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0") + implementation(project(mapOf("path" to ":opendc-trace:opendc-trace-api"))) testImplementation(projects.opendcSimulator.opendcSimulatorCore) } |
