2020-07-14 02:50:59 +00:00
|
|
|
import org.gradle.plugins.ide.idea.model.IdeaModel
|
2019-08-26 04:45:03 +00:00
|
|
|
|
|
|
|
plugins {
|
2021-05-14 08:31:32 +00:00
|
|
|
`java-library`
|
|
|
|
antlr
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2021-07-01 20:16:25 +00:00
|
|
|
project.description = "Core"
|
|
|
|
|
2019-09-22 01:14:36 +00:00
|
|
|
repositories {
|
2021-01-21 12:07:17 +00:00
|
|
|
maven {
|
|
|
|
name = "IntellectualSites"
|
|
|
|
url = uri("https://mvn.intellectualsites.com/content/groups/public/")
|
|
|
|
}
|
2021-07-01 20:16:25 +00:00
|
|
|
maven {
|
|
|
|
name = "IntellectualSites-Snapshots"
|
|
|
|
url = uri("https://mvn.intellectualsites.com/content/groups/snapshots/")
|
|
|
|
}
|
2019-09-22 01:14:36 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 04:45:03 +00:00
|
|
|
applyPlatformAndCoreConfiguration()
|
|
|
|
|
2021-02-11 16:59:03 +00:00
|
|
|
dependencies {
|
|
|
|
constraints {
|
|
|
|
implementation( "org.yaml:snakeyaml") {
|
2021-02-27 14:52:50 +00:00
|
|
|
version { strictly("1.27") }
|
2021-02-11 16:59:03 +00:00
|
|
|
because("Bukkit provides SnakeYaml")
|
2021-02-04 22:06:49 +00:00
|
|
|
}
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 20:58:50 +00:00
|
|
|
api(project(":worldedit-libs:core"))
|
|
|
|
implementation("de.schlichtherle:truezip:6.8.4")
|
2021-02-11 16:59:03 +00:00
|
|
|
implementation("org.mozilla:rhino-runtime:1.7.13")
|
|
|
|
implementation("org.yaml:snakeyaml")
|
|
|
|
implementation("com.google.guava:guava")
|
2021-02-27 14:52:50 +00:00
|
|
|
implementation("com.google.code.findbugs:jsr305:3.0.2")
|
2021-02-11 16:59:03 +00:00
|
|
|
implementation("com.google.code.gson:gson")
|
2021-03-29 13:29:16 +00:00
|
|
|
implementation("org.apache.logging.log4j:log4j-api:2.8.1") {
|
|
|
|
because("Mojang provides Log4J 2.8.1")
|
|
|
|
}
|
2021-02-11 16:59:03 +00:00
|
|
|
implementation("it.unimi.dsi:fastutil")
|
2021-07-01 20:16:25 +00:00
|
|
|
compileOnly("net.kyori:adventure-nbt:4.7.0")
|
|
|
|
testImplementation("net.kyori:adventure-nbt:4.7.0")
|
2019-11-19 21:25:36 +00:00
|
|
|
|
2021-02-11 16:59:03 +00:00
|
|
|
val antlrVersion = "4.9.1"
|
|
|
|
antlr("org.antlr:antlr4:$antlrVersion")
|
|
|
|
implementation("org.antlr:antlr4-runtime:$antlrVersion")
|
2021-01-18 20:58:50 +00:00
|
|
|
implementation("com.googlecode.json-simple:json-simple:1.1.1") { isTransitive = false }
|
|
|
|
compileOnly(project(":worldedit-libs:core:ap"))
|
|
|
|
annotationProcessor(project(":worldedit-libs:core:ap"))
|
2019-08-26 04:45:03 +00:00
|
|
|
// ensure this is on the classpath for the AP
|
2021-01-18 20:58:50 +00:00
|
|
|
annotationProcessor("com.google.guava:guava:21.0")
|
2021-02-11 16:59:03 +00:00
|
|
|
compileOnly("com.google.auto.value:auto-value-annotations:${Versions.AUTO_VALUE}")
|
|
|
|
annotationProcessor("com.google.auto.value:auto-value:${Versions.AUTO_VALUE}")
|
2021-05-12 16:04:21 +00:00
|
|
|
testRuntimeOnly("org.apache.logging.log4j:log4j-core:2.8.1")
|
2021-06-10 15:37:15 +00:00
|
|
|
implementation("com.github.luben:zstd-jni:1.5.0-2")
|
2021-01-18 20:58:50 +00:00
|
|
|
compileOnly("net.fabiozumbi12:redprotect:1.9.6")
|
2021-01-21 12:07:17 +00:00
|
|
|
api("com.github.intellectualsites.plotsquared:PlotSquared-API:4.514") { isTransitive = false }
|
2021-07-01 20:16:25 +00:00
|
|
|
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")
|
2021-01-18 20:58:50 +00:00
|
|
|
api("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT")
|
2021-05-30 21:49:46 +00:00
|
|
|
compileOnly("net.jpountz:lz4-java-stream:1.0.0") { isTransitive = false }
|
2021-06-19 08:17:43 +00:00
|
|
|
compileOnly("org.lz4:lz4-java:1.8.0")
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:32 +00:00
|
|
|
tasks.named<Test>("test") {
|
|
|
|
maxHeapSize = "1G"
|
|
|
|
}
|
|
|
|
|
2019-08-26 04:45:03 +00:00
|
|
|
tasks.withType<JavaCompile>().configureEach {
|
|
|
|
dependsOn(":worldedit-libs:build")
|
|
|
|
options.compilerArgs.add("-Aarg.name.key.prefix=")
|
|
|
|
}
|
|
|
|
|
2019-10-13 09:02:47 +00:00
|
|
|
tasks.named<AntlrTask>("generateGrammarSource").configure {
|
|
|
|
val pkg = "com.sk89q.worldedit.antlr"
|
|
|
|
outputDirectory = file("build/generated-src/antlr/main/${pkg.replace('.', '/')}")
|
|
|
|
arguments = listOf(
|
2021-01-21 12:07:17 +00:00
|
|
|
"-visitor", "-package", pkg,
|
|
|
|
"-Xexact-output-dir"
|
2019-10-13 09:02:47 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-05-14 08:31:32 +00:00
|
|
|
tasks.named("sourcesJar") {
|
|
|
|
mustRunAfter("generateGrammarSource")
|
|
|
|
}
|
|
|
|
|
2019-10-13 09:02:47 +00:00
|
|
|
// 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"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-14 02:50:59 +00:00
|
|
|
sourceSets.named("main") {
|
|
|
|
java {
|
|
|
|
srcDir("src/legacy/java")
|
|
|
|
}
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named<Copy>("processResources") {
|
|
|
|
filesMatching("fawe.properties") {
|
|
|
|
expand("version" to "$version",
|
|
|
|
"commit" to "${rootProject.ext["revision"]}",
|
|
|
|
"date" to "${rootProject.ext["date"]}")
|
|
|
|
}
|
|
|
|
}
|