mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
![Josh Roy](/assets/img/avatar_default.png)
#plainSerializer will be removed when adventure 5.0.0 releases. This PR prevents this from breaking in the future. Closes #4705
18 lines
373 B
Groovy
18 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)
|
|
}
|