mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-05 12:26:06 +00:00
50ab8ad5c7
* Feature/main/propagate diff annotations (#1187) * 25% done * More work * More work * 50% * More work * 75% * 100% & cleanup * Update adapters * Squish squash, applesauce commit275ba9bd84
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Date: Sat Jul 17 01:10:20 2021 +0200 Update dependency com.comphenix.protocol:ProtocolLib to v4.7.0 (#1173) Co-authored-by: Renovate Bot <bot@renovateapp.com> commit9fd8984804
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Date: Sat Jul 17 01:09:29 2021 +0200 Update dependency org.checkerframework:checker-qual to v3.16.0 (#1184) Co-authored-by: Renovate Bot <bot@renovateapp.com> commit861fb45e5c
Author: dordsor21 <dordsor21@gmail.com> Date: Fri Jul 16 19:07:02 2021 +0100 Fix #1075 commit420c45a29a
Author: dordsor21 <dordsor21@gmail.com> Date: Fri Jul 16 18:48:21 2021 +0100 Entity removal should be on the main thread as we're just passing through rather than doing chunk operations - Fixes #1164 - Not working: butcher/remove history commit4d4db7dcd0
Author: SirYwell <hannesgreule@outlook.de> Date: Fri Jul 16 17:52:44 2021 +0200 Make sure leaves category is loaded for heightmaps (fixes #1176) commitc98f6e4f37
Author: dordsor21 <dordsor21@gmail.com> Date: Fri Jul 16 10:44:52 2021 +0100 Do not allow generation commands to generate outside selection commit2485f5eccc
Author: dordsor21 <dordsor21@gmail.com> Date: Fri Jul 16 10:43:15 2021 +0100 EditSession needs to override some Extent methods to ensure block changes are correctly set through the various extents Fixes #1152 commitd9418ec8ae
Author: dordsor21 <dordsor21@gmail.com> Date: Fri Jul 16 09:52:44 2021 +0100 Undo part of41073bb1a0
Fixes #1178 * Update Upstream fb1fb84 Fixed typo and grammar * We don't support custom heights yet * Casing inconsistency * Address a few comments * Address comments * Don't refactor to AP classpath * Document annotation style * Refactoring & shade cleanup * Address a few comments * More work * Resolve comments not being resolved yet * Feature/main/propagate diff annotations (#1187) (#1194) * Remove beta package, fix history packages, move classes out of object package * Resolve comments not being resolved yet * Remove beta package, fix history packages, move classes out of object package Co-authored-by: NotMyFault <mc.cache@web.de> * brushes should be under brush * More refactoring - Filters/processors should be in the same place and are related to extents - Transforms are in `extent.transform` in upstream * Move history classes under history * Update adapters Co-authored-by: dordsor21 <dordsor21@gmail.com>
104 lines
3.5 KiB
Plaintext
104 lines
3.5 KiB
Plaintext
import org.gradle.plugins.ide.idea.model.IdeaModel
|
|
|
|
plugins {
|
|
`java-library`
|
|
antlr
|
|
}
|
|
|
|
project.description = "Core"
|
|
|
|
applyPlatformAndCoreConfiguration()
|
|
|
|
dependencies {
|
|
constraints {
|
|
implementation( "org.yaml:snakeyaml") {
|
|
version { strictly("1.27") }
|
|
because("Bukkit provides SnakeYaml")
|
|
}
|
|
}
|
|
|
|
api(project(":worldedit-libs:core"))
|
|
implementation("de.schlichtherle:truezip:6.8.4")
|
|
implementation("org.mozilla:rhino-runtime:1.7.13")
|
|
implementation("org.yaml:snakeyaml")
|
|
implementation("com.google.guava:guava")
|
|
implementation("com.google.code.findbugs:jsr305:3.0.2")
|
|
implementation("com.google.code.gson:gson")
|
|
implementation("org.apache.logging.log4j:log4j-api:2.8.1") {
|
|
because("Mojang provides Log4J 2.8.1")
|
|
}
|
|
implementation("it.unimi.dsi:fastutil")
|
|
compileOnly("net.kyori:adventure-nbt:4.8.1")
|
|
testImplementation("net.kyori:adventure-nbt:4.7.0")
|
|
|
|
val antlrVersion = "4.9.1"
|
|
antlr("org.antlr:antlr4:$antlrVersion")
|
|
implementation("org.antlr:antlr4-runtime:$antlrVersion")
|
|
implementation("com.googlecode.json-simple:json-simple:1.1.1") { isTransitive = false }
|
|
compileOnly(project(":worldedit-libs:core:ap"))
|
|
annotationProcessor(project(":worldedit-libs:core:ap"))
|
|
// ensure this is on the classpath for the AP
|
|
annotationProcessor("com.google.guava:guava:21.0")
|
|
compileOnly("com.google.auto.value:auto-value-annotations:${Versions.AUTO_VALUE}")
|
|
annotationProcessor("com.google.auto.value:auto-value:${Versions.AUTO_VALUE}")
|
|
testRuntimeOnly("org.apache.logging.log4j:log4j-core:2.8.1")
|
|
implementation("com.github.luben:zstd-jni:1.5.0-2")
|
|
compileOnly("net.fabiozumbi12:redprotect:1.9.6")
|
|
api("com.github.intellectualsites.plotsquared:PlotSquared-API:4.514") { isTransitive = false }
|
|
api("com.plotsquared:PlotSquared-Core:6.0.6-SNAPSHOT")
|
|
compileOnlyApi("net.kyori:adventure-api:4.8.0")
|
|
compileOnlyApi("net.kyori:adventure-text-minimessage:4.1.0-SNAPSHOT")
|
|
api("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT")
|
|
compileOnly("net.jpountz:lz4-java-stream:1.0.0") { isTransitive = false }
|
|
compileOnly("org.lz4:lz4-java:1.8.0")
|
|
compileOnly("com.zaxxer:SparseBitSet:1.2")
|
|
compileOnly("org.anarres:parallelgzip:1.0.5")
|
|
}
|
|
|
|
tasks.named<Test>("test") {
|
|
maxHeapSize = "1G"
|
|
}
|
|
|
|
tasks.withType<JavaCompile>().configureEach {
|
|
dependsOn(":worldedit-libs:build")
|
|
options.compilerArgs.add("-Aarg.name.key.prefix=")
|
|
}
|
|
|
|
tasks.named<AntlrTask>("generateGrammarSource").configure {
|
|
val pkg = "com.sk89q.worldedit.antlr"
|
|
outputDirectory = file("build/generated-src/antlr/main/${pkg.replace('.', '/')}")
|
|
arguments = listOf(
|
|
"-visitor", "-package", pkg,
|
|
"-Xexact-output-dir"
|
|
)
|
|
}
|
|
|
|
tasks.named("sourcesJar") {
|
|
mustRunAfter("generateGrammarSource")
|
|
}
|
|
|
|
// Give intellij info about where ANTLR code comes from
|
|
plugins.withId("idea") {
|
|
configure<IdeaModel> {
|
|
afterEvaluate {
|
|
module.sourceDirs.add(file("src/main/antlr"))
|
|
module.sourceDirs.add(file("build/generated-src/antlr/main"))
|
|
module.generatedSourceDirs.add(file("build/generated-src/antlr/main"))
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceSets.named("main") {
|
|
java {
|
|
srcDir("src/legacy/java")
|
|
}
|
|
}
|
|
|
|
tasks.named<Copy>("processResources") {
|
|
filesMatching("fawe.properties") {
|
|
expand("version" to "$version",
|
|
"commit" to "${rootProject.ext["revision"]}",
|
|
"date" to "${rootProject.ext["date"]}")
|
|
}
|
|
}
|