diff options
author | Linnea Gräf <nea@nea.moe> | 2025-01-08 18:48:48 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-08 18:48:48 +0100 |
commit | f694daf322bbb4ff530a9332547c5c8337c3e0c0 (patch) | |
tree | 369a2b30d9c4eff7984301c617a921394a0d0d45 /build-src/build.gradle.kts | |
parent | 8239840f4990494319e7b85fffda8f82d469a8d9 (diff) | |
download | LocalTransactionLedger-f694daf322bbb4ff530a9332547c5c8337c3e0c0.tar.gz LocalTransactionLedger-f694daf322bbb4ff530a9332547c5c8337c3e0c0.tar.bz2 LocalTransactionLedger-f694daf322bbb4ff530a9332547c5c8337c3e0c0.zip |
build: Use more modern arch loom
Diffstat (limited to 'build-src/build.gradle.kts')
-rw-r--r-- | build-src/build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-src/build.gradle.kts b/build-src/build.gradle.kts index f203fd6..5e53bfc 100644 --- a/build-src/build.gradle.kts +++ b/build-src/build.gradle.kts @@ -1,11 +1,11 @@ plugins { - kotlin("jvm") version "2.0.20" + `embedded-kotlin` `kotlin-dsl` } repositories { mavenCentral() } dependencies { - implementation("com.google.code.gson:gson:2.11.0") + implementation("com.google.code.gson:gson:2.9.1") // Match loom :) implementation(gradleApi()) } |