mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Consistent file name; remove Netty IO_Uring
This commit is contained in:
parent
2a89eab100
commit
fb03885eb8
1 changed files with 3 additions and 1 deletions
|
@ -32,6 +32,8 @@ dependencies {
|
|||
exclude group: 'com.google.guava', module: "guava"
|
||||
exclude group: 'com.google.code.gson', module: "gson"
|
||||
exclude group: 'org.slf4j'
|
||||
exclude group: 'it.unimi.dsi.fastutil'
|
||||
exclude group: 'io.netty.incubator'
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -80,7 +82,6 @@ task sourcesJar(type: Jar, dependsOn: classes) {
|
|||
|
||||
shadowJar {
|
||||
configurations = [project.configurations.shadow]
|
||||
relocate("it.unimi.dsi.fastutil", "org.geysermc.relocate.fastutil")
|
||||
relocate("org.objectweb.asm", "org.geysermc.relocate.asm")
|
||||
relocate("org.yaml", "org.geysermc.relocate.yaml") // https://github.com/CardboardPowered/cardboard/issues/139
|
||||
relocate("com.fasterxml.jackson", "org.geysermc.relocate.jackson")
|
||||
|
@ -94,6 +95,7 @@ jar {
|
|||
remapJar {
|
||||
dependsOn(shadowJar)
|
||||
input = tasks.shadowJar.archiveFile
|
||||
archiveName = "Geyser-Fabric.jar"
|
||||
}
|
||||
|
||||
// configure the maven publication
|
||||
|
|
Loading…
Reference in a new issue