mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-03 15:08:18 +01:00
6816eb4e18
Co-authored-by: MD <1917406+mdcfe@users.noreply.github.com>
21 lines
420 B
Groovy
21 lines
420 B
Groovy
plugins {
|
|
id("essentials.base-conventions")
|
|
}
|
|
|
|
java {
|
|
disableAutoTargetJvm()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(':providers:BaseProviders')) {
|
|
exclude(module: 'spigot-api')
|
|
}
|
|
compileOnly 'io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT'
|
|
compileOnly 'io.papermc.paper:paper-mojangapi:1.18.2-R0.1-SNAPSHOT'
|
|
}
|
|
|
|
essentials {
|
|
injectBukkitApi.set(false)
|
|
injectBstats.set(false)
|
|
}
|