diff options
author | Linnea Gräf <nea@nea.moe> | 2023-12-14 18:11:17 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2023-12-14 18:11:17 +0100 |
commit | a453cc833f52cf1ccd52288edb73c6f0fbc0c7cc (patch) | |
tree | 27704f77968903b7fb38debf42cefda7ed85b705 /plugin/build.gradle.kts | |
parent | 9058126b0d77c315436226a589ade0748d8a2905 (diff) | |
download | archenemy-a453cc833f52cf1ccd52288edb73c6f0fbc0c7cc.tar.gz archenemy-a453cc833f52cf1ccd52288edb73c6f0fbc0c7cc.tar.bz2 archenemy-a453cc833f52cf1ccd52288edb73c6f0fbc0c7cc.zip |
Add support for jar merging
Diffstat (limited to 'plugin/build.gradle.kts')
-rw-r--r-- | plugin/build.gradle.kts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index f3d7c28..35f1832 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -18,6 +18,12 @@ dependencies { implementation("net.fabricmc:mapping-io:0.1.8") implementation("net.fabricmc:tiny-remapper:0.8.6") + implementation("org.ow2.asm:asm:9.5") + implementation("org.ow2.asm:asm-commons:9.5") + implementation("org.ow2.asm:asm-tree:9.5") + implementation("org.ow2.asm:asm-analysis:9.5") + implementation("org.ow2.asm:asm-util:9.5") + testImplementation("org.jetbrains.kotlin:kotlin-test") testImplementation("org.jetbrains.kotlin:kotlin-test-junit") } |