LuckPerms/bukkit/build.gradle

56 lines
2.0 KiB
Groovy
Raw Normal View History

plugins {
id 'com.github.johnrengelman.shadow' version '8.1.1'
2018-08-10 21:39:29 +02:00
}
repositories {
2022-09-05 22:38:31 +02:00
maven { url 'https://repo.papermc.io/repository/maven-public/' }
2018-08-10 21:39:29 +02:00
}
dependencies {
2021-08-20 19:16:39 +02:00
implementation project(':common')
compileOnly project(':common:loader-utils')
2018-08-10 21:39:29 +02:00
compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT'
2022-06-12 18:48:29 +02:00
compileOnly('net.kyori:adventure-platform-bukkit:4.1.0') {
2021-04-18 14:33:22 +02:00
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
exclude(module: 'adventure-nbt')
}
compileOnly 'me.lucko:commodore:2.0'
2021-08-20 19:16:39 +02:00
compileOnly('net.milkbowl.vault:VaultAPI:1.7') {
2018-08-10 21:39:29 +02:00
exclude(module: 'bukkit')
}
compileOnly 'lilypad.client.connect:api:0.0.1-SNAPSHOT'
}
shadowJar {
2021-08-20 19:16:39 +02:00
archiveFileName = 'luckperms-bukkit.jarinjar'
2018-08-10 21:39:29 +02:00
dependencies {
include(dependency('me.lucko.luckperms:.*'))
}
relocate 'net.kyori.adventure', 'me.lucko.luckperms.lib.adventure'
2018-08-10 21:39:29 +02:00
relocate 'net.kyori.event', 'me.lucko.luckperms.lib.eventbus'
relocate 'com.github.benmanes.caffeine', 'me.lucko.luckperms.lib.caffeine'
relocate 'okio', 'me.lucko.luckperms.lib.okio'
relocate 'okhttp3', 'me.lucko.luckperms.lib.okhttp3'
relocate 'net.bytebuddy', 'me.lucko.luckperms.lib.bytebuddy'
2018-08-10 21:39:29 +02:00
relocate 'me.lucko.commodore', 'me.lucko.luckperms.lib.commodore'
relocate 'org.mariadb.jdbc', 'me.lucko.luckperms.lib.mariadb'
relocate 'com.mysql', 'me.lucko.luckperms.lib.mysql'
relocate 'com.impossibl', 'me.lucko.luckperms.lib.postgresql'
2018-08-10 21:39:29 +02:00
relocate 'com.zaxxer.hikari', 'me.lucko.luckperms.lib.hikari'
relocate 'com.mongodb', 'me.lucko.luckperms.lib.mongodb'
relocate 'org.bson', 'me.lucko.luckperms.lib.bson'
relocate 'redis.clients.jedis', 'me.lucko.luckperms.lib.jedis'
2022-11-26 19:06:15 +01:00
relocate 'io.nats.client', 'me.lucko.luckperms.lib.nats'
2021-02-04 18:10:30 +01:00
relocate 'com.rabbitmq', 'me.lucko.luckperms.lib.rabbitmq'
2018-08-10 21:39:29 +02:00
relocate 'org.apache.commons.pool2', 'me.lucko.luckperms.lib.commonspool2'
relocate 'ninja.leaping.configurate', 'me.lucko.luckperms.lib.configurate'
}
artifacts {
archives shadowJar
2021-08-20 19:16:39 +02:00
}