mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-05 02:19:52 +01:00
685084219e
#plainSerializer will be removed when adventure 5.0.0 releases. This PR prevents this from breaking in the future. Closes #4705
19 lines
373 B
Groovy
19 lines
373 B
Groovy
plugins {
|
|
id("essentials.base-conventions")
|
|
}
|
|
|
|
java {
|
|
disableAutoTargetJvm()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':providers:BaseProviders')
|
|
compileOnly 'io.papermc.paper:paper-api:1.18.1-R0.1-SNAPSHOT'
|
|
compileOnly 'io.papermc.paper:paper-mojangapi:1.18.1-R0.1-SNAPSHOT'
|
|
}
|
|
|
|
essentials {
|
|
injectBukkitApi.set(false)
|
|
injectBstats.set(false)
|
|
}
|