forked from public-mirrors/HuskSync
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
3.7 KiB
Groovy
68 lines
3.7 KiB
Groovy
dependencies {
|
|
implementation project(path: ':common')
|
|
|
|
implementation 'org.slf4j:slf4j-api:1.7.36'
|
|
implementation 'org.inksnow.husk.uniform:uniform-bukkit:1.2.1-ad25f16'
|
|
implementation 'net.william278:mpdbdataconverter:1.0.1'
|
|
implementation 'org.inksnow.husk:hsldataconverter:1.0'
|
|
implementation 'net.william278:mapdataapi:1.0.3'
|
|
implementation 'org.bstats:bstats-bukkit:3.0.2'
|
|
implementation 'net.kyori:adventure-platform-bukkit:4.3.4'
|
|
implementation 'dev.triumphteam:triumph-gui:3.1.10'
|
|
implementation 'space.arim.morepaperlib:morepaperlib:0.4.4'
|
|
implementation 'de.tr7zw:item-nbt-api:2.13.2'
|
|
implementation 'com.google.guava:guava:33.2.1-jre'
|
|
implementation ("redis.clients:jedis:$jedis_version") {
|
|
exclude group: 'org.slf4j', module: 'slf4j-api'
|
|
}
|
|
implementation "org.xerial.snappy:snappy-java:$snappy_version"
|
|
implementation "org.mongodb:mongodb-driver-sync:$mongodb_driver_version"
|
|
|
|
compileOnly 'org.spigotmc:spigot-api:1.17.1-R0.1-SNAPSHOT'
|
|
compileOnly 'com.github.retrooper.packetevents:spigot:2.3.0'
|
|
compileOnly 'com.comphenix.protocol:ProtocolLib:5.1.0'
|
|
compileOnly 'org.projectlombok:lombok:1.18.34'
|
|
compileOnly 'commons-io:commons-io:2.16.1'
|
|
compileOnly 'org.json:json:20240303'
|
|
compileOnly 'de.themoep:minedown-adventure:1.7.3-SNAPSHOT'
|
|
compileOnly 'org.inksnow.husk:configlib-yaml:4.5.4'
|
|
compileOnly 'com.zaxxer:HikariCP:4.0.3'
|
|
compileOnly 'org.inksnow.husk:desertwell:2.0.5-9962d59:all'
|
|
compileOnly 'net.william278:AdvancementAPI:97a9583413'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.34'
|
|
}
|
|
|
|
shadowJar {
|
|
mergeServiceFiles()
|
|
|
|
relocate 'org.inksnow.cputil', 'net.william278.husksync.libraries.cputil'
|
|
relocate 'org.slf4j', 'net.william278.husksync.libraries.slf4j'
|
|
relocate 'org.objectweb.asm', 'net.william278.husksync.libraries.asm'
|
|
|
|
relocate 'org.apache.commons.io', 'net.william278.husksync.libraries.commons.io'
|
|
relocate 'org.apache.commons.text', 'net.william278.husksync.libraries.commons.text'
|
|
relocate 'org.apache.commons.lang3', 'net.william278.husksync.libraries.commons.lang3'
|
|
relocate 'com.google.gson', 'net.william278.husksync.libraries.gson'
|
|
relocate 'com.google.common', 'net.william278.husksync.libraries.guava'
|
|
relocate 'com.fatboyindustrial', 'net.william278.husksync.libraries'
|
|
relocate 'de.themoep', 'net.william278.husksync.libraries'
|
|
relocate 'org.jetbrains', 'net.william278.husksync.libraries'
|
|
relocate 'org.intellij', 'net.william278.husksync.libraries'
|
|
relocate 'com.zaxxer', 'net.william278.husksync.libraries'
|
|
relocate 'de.exlll', 'net.william278.husksync.libraries'
|
|
relocate 'net.william278.uniform', 'net.william278.husksync.libraries.uniform'
|
|
relocate 'net.william278.desertwell', 'net.william278.husksync.libraries.desertwell'
|
|
relocate 'net.william278.paginedown', 'net.william278.husksync.libraries.paginedown'
|
|
relocate 'net.william278.mapdataapi', 'net.william278.husksync.libraries.mapdataapi'
|
|
relocate 'net.william278.mpdbconverter', 'net.william278.husksync.libraries.mpdbconverter'
|
|
relocate 'net.william278.hslmigrator', 'net.william278.husksync.libraries.hslconverter'
|
|
relocate 'org.json', 'net.william278.husksync.libraries.json'
|
|
relocate 'net.querz', 'net.william278.husksync.libraries.nbtparser'
|
|
relocate 'net.roxeez', 'net.william278.husksync.libraries'
|
|
relocate 'org.bstats', 'net.william278.husksync.libraries.bstats'
|
|
relocate 'dev.triumphteam.gui', 'net.william278.husksync.libraries.triumphgui'
|
|
relocate 'space.arim.morepaperlib', 'net.william278.husksync.libraries.paperlib'
|
|
relocate 'de.tr7zw.changeme.nbtapi', 'net.william278.husksync.libraries.nbtapi'
|
|
}
|