mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
1.17 (#3088)
* Minor work for 1.17 * Address TODOs Introduce `entity-change-block` flag covering blocks affected by `onPeskyMobsChangeTheWorldLikeWTFEvent`. Previously this was covered by the mob-place flag, however, changing the tilt state of big drip leafs and a series of other blocks call `EntityChangeBlockEvent` so this shouldn't be covered by mob flags only. * Address other TODOs * Compile against paper 1.17 This will only work if you built paper locally and deployed it to your local maven repo. * Updated linked javadoc links * Handle sculk sensor events in a more controllable way * Update issue forms for 1.17
This commit is contained in:
@ -5,17 +5,11 @@ dependencies {
|
||||
compileOnlyApi(libs.checkerqual)
|
||||
|
||||
// Minecraft expectations
|
||||
compileOnlyApi(libs.guava) {
|
||||
because("Minecraft uses 21.0")
|
||||
}
|
||||
compileOnlyApi(libs.gson) {
|
||||
because("Minecraft uses 2.8.0")
|
||||
}
|
||||
compileOnlyApi(libs.guava)
|
||||
compileOnlyApi(libs.gson)
|
||||
|
||||
// Platform expectations
|
||||
compileOnlyApi(libs.snakeyaml) {
|
||||
because("Bukkit uses 1.27")
|
||||
}
|
||||
compileOnlyApi(libs.snakeyaml)
|
||||
|
||||
// Adventure
|
||||
api(libs.adventure)
|
||||
@ -41,9 +35,7 @@ dependencies {
|
||||
testImplementation(libs.fastasyncworldeditBukkit)
|
||||
|
||||
// Logging
|
||||
compileOnlyApi(libs.log4j) {
|
||||
because("Minecraft uses 2.8.1")
|
||||
}
|
||||
compileOnlyApi(libs.log4j)
|
||||
|
||||
// Other libraries
|
||||
api(libs.prtree)
|
||||
|
Reference in New Issue
Block a user