mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-23 01:27:40 +01:00
26 lines
546 B
Groovy
26 lines
546 B
Groovy
plugins {
|
|
id("essentials.base-conventions")
|
|
id("com.github.johnrengelman.shadow")
|
|
}
|
|
|
|
java {
|
|
disableAutoTargetJvm()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(':providers:BaseProviders')) {
|
|
exclude(module: 'spigot-api')
|
|
}
|
|
compileOnly 'io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT'
|
|
compileOnly 'io.papermc.paper:paper-mojangapi:1.20.4-R0.1-SNAPSHOT'
|
|
}
|
|
|
|
essentials {
|
|
injectBukkitApi.set(false)
|
|
injectBstats.set(false)
|
|
}
|
|
|
|
shadowJar {
|
|
relocate 'net.kyori.adventure', 'net.essentialsx.temp.adventure'
|
|
}
|