diff options
author | Linnea Gräf <nea@nea.moe> | 2025-01-16 20:46:41 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-16 20:46:41 +0100 |
commit | 2cc7d668eacba1919208ba6b131b01fe10bbf0ed (patch) | |
tree | 8490092dbffcc729acc4a3679028ba633e395fae /build.gradle.kts | |
parent | 0cb08682bc6b759a054066e145cb0332a40f42a7 (diff) | |
download | LocalTransactionLedger-2cc7d668eacba1919208ba6b131b01fe10bbf0ed.tar.gz LocalTransactionLedger-2cc7d668eacba1919208ba6b131b01fe10bbf0ed.tar.bz2 LocalTransactionLedger-2cc7d668eacba1919208ba6b131b01fe10bbf0ed.zip |
refactor: Move some basetypes and fix: Kuudra chest and dungeon chest detection mixing
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index b4583f1..171c811 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,19 +1,11 @@ import com.github.gmazzo.buildconfig.BuildConfigExtension import java.io.ByteArrayOutputStream -buildscript { - repositories { - mavenCentral() - } - dependencies { - classpath("com.guardsquare:proguard-gradle:7.6.1") - } -} - plugins { kotlin("jvm") version "2.0.20" 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 } allprojects { |