diff options
author | Linnea Gräf <nea@nea.moe> | 2025-01-16 23:25:34 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-16 23:25:34 +0100 |
commit | 38409988c0ed3e171e77ee691154775b36ed1e00 (patch) | |
tree | 64c15e6af17c27fc1b995b2790e7afc654eefb45 /build.gradle.kts | |
parent | 5daefca0b50e563152462f0ee1a963b8c98c33f0 (diff) | |
download | LocalTransactionLedger-38409988c0ed3e171e77ee691154775b36ed1e00.tar.gz LocalTransactionLedger-38409988c0ed3e171e77ee691154775b36ed1e00.tar.bz2 LocalTransactionLedger-38409988c0ed3e171e77ee691154775b36ed1e00.zip |
feat: Add basic server implementation
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 171c811..8377205 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -2,7 +2,9 @@ import com.github.gmazzo.buildconfig.BuildConfigExtension import java.io.ByteArrayOutputStream plugins { - kotlin("jvm") version "2.0.20" apply false + val kotlinVersion = "2.0.20" + kotlin("jvm") version kotlinVersion apply false + kotlin("plugin.serialization") version kotlinVersion apply false id("com.github.gmazzo.buildconfig") version "5.5.0" apply false id("ledger-globals") id("com.github.johnrengelman.shadow") version "8.1.1" apply false |