diff options
| author | Alessio Leonardo Tomei <122273875+T0mexX@users.noreply.github.com> | 2024-08-22 14:40:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-22 14:40:57 +0200 |
| commit | 4f98fb2bf8204f6af52cd6eeb3313d21c6ca95bc (patch) | |
| tree | a9a67ce01615cfccfc787573626ae8c9f2ff740c /opendc-common/build.gradle.kts | |
| parent | b2877899b9479458dba5e7dcba2891f1248b5d6d (diff) | |
Added Unit of measurament system with new deserialization (#242)
Diffstat (limited to 'opendc-common/build.gradle.kts')
| -rw-r--r-- | opendc-common/build.gradle.kts | 5 |
1 files changed, 5 insertions, 0 deletions
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) } |
