aboutsummaryrefslogtreecommitdiff
path: root/build-src/build.gradle.kts
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-01-07 14:07:14 +0100
committerLinnea Gräf <nea@nea.moe>2025-01-07 14:07:14 +0100
commit34334396178eec3f72f1228b400cb9ec81c4ce4c (patch)
tree416d05a1193aa787c3fcbe44431a87d9ec555f3b /build-src/build.gradle.kts
parentf2783ceea23147d2702c47c9b47c06ad7fc707a8 (diff)
downloadLocalTransactionLedger-34334396178eec3f72f1228b400cb9ec81c4ce4c.tar.gz
LocalTransactionLedger-34334396178eec3f72f1228b400cb9ec81c4ce4c.tar.bz2
LocalTransactionLedger-34334396178eec3f72f1228b400cb9ec81c4ce4c.zip
build: Split up dependency injection into its own package
Diffstat (limited to 'build-src/build.gradle.kts')
-rw-r--r--build-src/build.gradle.kts11
1 files changed, 11 insertions, 0 deletions
diff --git a/build-src/build.gradle.kts b/build-src/build.gradle.kts
new file mode 100644
index 0000000..f203fd6
--- /dev/null
+++ b/build-src/build.gradle.kts
@@ -0,0 +1,11 @@
+plugins {
+ kotlin("jvm") version "2.0.20"
+ `kotlin-dsl`
+}
+repositories {
+ mavenCentral()
+}
+dependencies {
+ implementation("com.google.code.gson:gson:2.11.0")
+ implementation(gradleApi())
+}