Update Hypo to 1.2.2 (#102)
This commit is contained in:
parent
d76e04dae4
commit
a1b1b140a2
4 changed files with 8 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
# noinspection EditorConfigKeyCorrectness
|
||||
[*.{kt,kts}]
|
||||
max_line_length = 150
|
||||
ij_kotlin_imports_layout = ascii
|
||||
ij_kotlin_imports_layout = *
|
||||
no-wildcard-imports = no-wildcard-imports
|
||||
ij_continuation_indent_size = 4
|
||||
ij_kotlin_packages_to_use_import_on_demand = io.papermc.paperweight.util.**, io.papermc.paperweight.tasks.*, org.gradle.kotlin.dsl.*, kotlin.io.path.*
|
||||
|
|
|
@ -47,6 +47,8 @@ val shadowJar by tasks.existing(ShadowJar::class) {
|
|||
"org.objectweb.asm",
|
||||
"org.osgi",
|
||||
"org.tukaani.xz",
|
||||
"org.apache.logging.slf4j",
|
||||
"org.slf4j"
|
||||
).forEach { pack ->
|
||||
relocate(pack, "$prefix.$pack")
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[versions]
|
||||
asm = "9.1"
|
||||
lorenz = "0.5.8"
|
||||
hypo = "1.2.1"
|
||||
hypo = "1.2.2"
|
||||
|
||||
[libraries]
|
||||
asm-core = { module = "org.ow2.asm:asm", version.ref = "asm" }
|
||||
|
@ -23,6 +23,7 @@ hypo-hydrate = { module = "dev.denwav.hypo:hypo-hydrate", version.ref = "hypo" }
|
|||
hypo-asm-core = { module = "dev.denwav.hypo:hypo-asm", version.ref = "hypo" }
|
||||
hypo-asm-hydrate = { module = "dev.denwav.hypo:hypo-asm-hydrate", version.ref = "hypo" }
|
||||
hypo-mappings = { module = "dev.denwav.hypo:hypo-mappings", version.ref = "hypo" }
|
||||
slf4j-log4j2-impl = "org.apache.logging.log4j:log4j-slf4j-impl:2.14.1"
|
||||
|
||||
lorenzTiny = "org.quiltmc:lorenz-tiny:3.0.0"
|
||||
jbsdiff = "io.sigpipe:jbsdiff:1.0"
|
||||
|
|
|
@ -10,6 +10,9 @@ dependencies {
|
|||
implementation(libs.bundles.asm)
|
||||
|
||||
implementation(libs.bundles.hypo)
|
||||
implementation(libs.slf4j.log4j2.impl) {
|
||||
isTransitive = false // we get slf4j-api from hypo, gradle provides log4j
|
||||
}
|
||||
implementation(libs.bundles.cadix)
|
||||
|
||||
implementation(libs.lorenzTiny)
|
||||
|
|
Loading…
Reference in a new issue