From 4f98fb2bf8204f6af52cd6eeb3313d21c6ca95bc Mon Sep 17 00:00:00 2001 From: Alessio Leonardo Tomei <122273875+T0mexX@users.noreply.github.com> Date: Thu, 22 Aug 2024 14:40:57 +0200 Subject: Added Unit of measurament system with new deserialization (#242) --- opendc-common/build.gradle.kts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'opendc-common/build.gradle.kts') diff --git a/opendc-common/build.gradle.kts b/opendc-common/build.gradle.kts index e0524f3c..2dd35d83 100644 --- a/opendc-common/build.gradle.kts +++ b/opendc-common/build.gradle.kts @@ -26,10 +26,15 @@ description = "Common functionality used across OpenDC modules" // Build configuration plugins { `kotlin-library-conventions` + kotlin("plugin.serialization") version "1.9.22" } +val serializationVersion = "1.6.0" + dependencies { api(libs.kotlinx.coroutines) + implementation(libs.kotlin.logging) + implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion") testImplementation(projects.opendcSimulator.opendcSimulatorCore) } -- cgit v1.2.3