2021-06-07 14:17:39 +02:00
|
|
|
plugins {
|
|
|
|
id("essentials.base-conventions")
|
2024-02-03 21:38:14 +01:00
|
|
|
id("com.github.johnrengelman.shadow")
|
2021-06-07 14:17:39 +02:00
|
|
|
}
|
|
|
|
|
2021-10-24 16:27:07 +02:00
|
|
|
java {
|
|
|
|
disableAutoTargetJvm()
|
|
|
|
}
|
|
|
|
|
2020-11-25 21:24:24 +01:00
|
|
|
dependencies {
|
2022-02-01 23:13:16 +01:00
|
|
|
implementation(project(':providers:BaseProviders')) {
|
|
|
|
exclude(module: 'spigot-api')
|
|
|
|
}
|
2024-02-26 12:47:00 +01:00
|
|
|
compileOnly 'io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT'
|
|
|
|
compileOnly 'io.papermc.paper:paper-mojangapi:1.20.4-R0.1-SNAPSHOT'
|
2020-11-25 21:24:24 +01:00
|
|
|
}
|
2021-06-09 00:36:43 +02:00
|
|
|
|
|
|
|
essentials {
|
|
|
|
injectBukkitApi.set(false)
|
2021-08-02 14:21:53 +02:00
|
|
|
injectBstats.set(false)
|
2021-06-09 00:36:43 +02:00
|
|
|
}
|
2024-02-03 21:38:14 +01:00
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
relocate 'net.kyori.adventure', 'net.essentialsx.temp.adventure'
|
|
|
|
}
|