2018-09-19 20:41:47 +02:00
|
|
|
plugins {
|
|
|
|
id 'net.kyori.blossom' version '1.1.0'
|
|
|
|
id 'com.github.johnrengelman.shadow' version '2.0.4'
|
2018-08-10 21:39:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2019-01-07 22:25:11 +01:00
|
|
|
maven { url 'https://repo.spongepowered.org/maven' }
|
2018-08-10 21:39:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-08-11 19:11:30 +02:00
|
|
|
compile project(':common')
|
2018-08-10 21:39:29 +02:00
|
|
|
compile project(':sponge:sponge-service')
|
|
|
|
compile project(':sponge:sponge-service-api6')
|
|
|
|
compile project(':sponge:sponge-service-api7')
|
|
|
|
|
|
|
|
compileOnly('org.spongepowered:spongeapi:8.0.0-SNAPSHOT') {
|
|
|
|
exclude(module: 'configurate-core')
|
|
|
|
exclude(module: 'configurate-hocon')
|
|
|
|
exclude(module: 'configurate-gson')
|
|
|
|
exclude(module: 'configurate-yaml')
|
|
|
|
}
|
2019-01-12 14:39:07 +01:00
|
|
|
annotationProcessor('org.spongepowered:spongeapi:8.0.0-SNAPSHOT') {
|
|
|
|
exclude(module: 'configurate-core')
|
|
|
|
exclude(module: 'configurate-hocon')
|
|
|
|
exclude(module: 'configurate-gson')
|
|
|
|
exclude(module: 'configurate-yaml')
|
|
|
|
}
|
2020-04-04 23:47:43 +02:00
|
|
|
compileOnly 'net.kyori:text-adapter-spongeapi:3.0.3'
|
2018-08-10 21:39:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
blossom {
|
|
|
|
replaceTokenIn('src/main/java/me/lucko/luckperms/sponge/LPSpongeBootstrap.java')
|
|
|
|
replaceToken '@version@', project.ext.fullVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
archiveName = "LuckPerms-Sponge-${project.ext.fullVersion}.jar"
|
|
|
|
|
|
|
|
dependencies {
|
2019-08-29 23:07:12 +02:00
|
|
|
include(dependency('net.luckperms:.*'))
|
2018-08-10 21:39:29 +02:00
|
|
|
include(dependency('me.lucko.luckperms:.*'))
|
|
|
|
}
|
|
|
|
|
|
|
|
relocate 'net.kyori.text', 'me.lucko.luckperms.lib.text'
|
|
|
|
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'
|
2020-03-30 20:18:34 +02:00
|
|
|
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 'org.postgresql', 'me.lucko.luckperms.lib.postgresql'
|
|
|
|
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'
|
|
|
|
relocate 'org.apache.commons.pool2', 'me.lucko.luckperms.lib.commonspool2'
|
|
|
|
relocate 'ninja.leaping.configurate', 'me.lucko.luckperms.lib.configurate'
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives shadowJar
|
|
|
|
}
|
2018-10-15 23:30:27 +02:00
|
|
|
|
|
|
|
// Only used occasionally for deployment - not needed for normal builds.
|
|
|
|
/*
|
|
|
|
apply plugin: 'signing'
|
|
|
|
|
|
|
|
signing {
|
|
|
|
useGpgCmd()
|
|
|
|
sign configurations.archives
|
|
|
|
}
|
|
|
|
*/
|