2019-08-26 04:45:03 +00:00
|
|
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
2019-10-13 11:47:26 +00:00
|
|
|
import com.mendhak.gradlecrowdin.DownloadTranslationsTask
|
|
|
|
import com.mendhak.gradlecrowdin.UploadSourceFileTask
|
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 {
|
|
|
|
id("java-library")
|
|
|
|
id("net.ltgt.apt-eclipse")
|
|
|
|
id("net.ltgt.apt-idea")
|
2019-11-19 21:25:36 +00:00
|
|
|
id("antlr")
|
2019-10-13 11:47:26 +00:00
|
|
|
id("com.mendhak.gradlecrowdin")
|
2019-08-26 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2019-09-22 01:14:36 +00:00
|
|
|
repositories {
|
2020-04-21 10:39:42 +00:00
|
|
|
maven { url = uri("https://plotsquared.com/mvn") }
|
2020-05-14 15:20:17 +00:00
|
|
|
maven { url = uri("https://mvn.intellectualsites.com/content/groups/public/") }
|
2020-01-15 00:44:09 +00:00
|
|
|
mavenCentral()
|
2019-11-20 00:11:54 +00:00
|
|
|
|
2019-09-22 01:14:36 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 04:45:03 +00:00
|
|
|
applyPlatformAndCoreConfiguration()
|
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy {
|
|
|
|
force("com.google.guava:guava:21.0")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-08-14 19:29:15 +00:00
|
|
|
"api"(project(":worldedit-libs:core"))
|
2020-12-21 09:55:46 +00:00
|
|
|
"implementation"("de.schlichtherle:truezip:6.8.4")
|
2020-12-21 10:40:00 +00:00
|
|
|
"implementation"("net.java.truevfs:truevfs-profile-default_2.13:0.12.2")
|
2020-08-14 19:29:15 +00:00
|
|
|
"implementation"("org.mozilla:rhino-runtime:1.7.12")
|
2020-12-21 09:44:31 +00:00
|
|
|
"implementation"("org.yaml:snakeyaml:1.27")
|
2020-08-14 19:29:15 +00:00
|
|
|
"implementation"("com.google.guava:guava:${Versions.GUAVA}")
|
|
|
|
"implementation"("com.google.code.findbugs:jsr305:3.0.2")
|
|
|
|
"implementation"("com.google.code.gson:gson:${Versions.GSON}")
|
2021-01-08 14:24:58 +00:00
|
|
|
"implementation"("org.slf4j:slf4j-api:1.7.26")
|
2020-08-14 19:29:15 +00:00
|
|
|
"implementation"("it.unimi.dsi:fastutil:${Versions.FAST_UTIL}")
|
2019-11-19 21:25:36 +00:00
|
|
|
|
|
|
|
val antlrVersion = "4.7.2"
|
|
|
|
"antlr"("org.antlr:antlr4:$antlrVersion")
|
|
|
|
"implementation"("org.antlr:antlr4-runtime:$antlrVersion")
|
2019-11-19 22:07:30 +00:00
|
|
|
|
2020-08-14 19:29:15 +00:00
|
|
|
"implementation"("com.googlecode.json-simple:json-simple:1.1.1") { isTransitive = false }
|
2019-08-26 04:45:03 +00:00
|
|
|
"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}")
|
2020-01-11 03:32:12 +00:00
|
|
|
"testImplementation"("ch.qos.logback:logback-core:${Versions.LOGBACK}")
|
|
|
|
"testImplementation"("ch.qos.logback:logback-classic:${Versions.LOGBACK}")
|
2020-12-21 20:06:43 +00:00
|
|
|
"compile"("com.github.luben:zstd-jni:1.4.8-1")
|
2019-08-26 04:45:03 +00:00
|
|
|
"compileOnly"("net.fabiozumbi12:redprotect:1.9.6")
|
2020-04-22 07:10:17 +00:00
|
|
|
"compile"("com.github.intellectualsites.plotsquared:PlotSquared-API:latest") {
|
|
|
|
isTransitive = false
|
|
|
|
}
|
2020-12-20 22:35:57 +00:00
|
|
|
"compile"("com.plotsquared:PlotSquared-Core:5.13.3") {
|
2019-09-22 01:14:36 +00:00
|
|
|
isTransitive = false
|
|
|
|
}
|
2020-12-21 14:57:57 +00:00
|
|
|
"api"("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT")
|
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(
|
|
|
|
"-visitor", "-package", pkg,
|
|
|
|
"-Xexact-output-dir"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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/main/java")
|
|
|
|
srcDir("src/legacy/java")
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDir("src/main/resources")
|
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"]}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tasks.named<ShadowJar>("shadowJar") {
|
|
|
|
dependencies {
|
2020-12-22 10:57:12 +00:00
|
|
|
include(dependency("com.github.luben:zstd-jni:1.4.8-1"))
|
2019-08-26 04:45:03 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2019-11-21 13:50:05 +00:00
|
|
|
|
2019-10-13 11:47:26 +00:00
|
|
|
val crowdinApiKey = "crowdin_apikey"
|
|
|
|
|
2020-03-02 22:43:27 +00:00
|
|
|
if (project.hasProperty(crowdinApiKey) && !gradle.startParameter.isOffline) {
|
2019-11-17 04:21:36 +00:00
|
|
|
tasks.named<UploadSourceFileTask>("crowdinUpload") {
|
|
|
|
apiKey = "${project.property(crowdinApiKey)}"
|
|
|
|
projectId = "worldedit-core"
|
|
|
|
files = arrayOf(
|
2019-11-18 09:50:52 +00:00
|
|
|
object {
|
|
|
|
var name = "strings.json"
|
|
|
|
var source = "${file("src/main/resources/lang/strings.json")}"
|
|
|
|
}
|
2019-11-17 04:21:36 +00:00
|
|
|
)
|
|
|
|
}
|
2019-10-13 11:47:26 +00:00
|
|
|
|
2020-03-02 22:43:27 +00:00
|
|
|
val dlTranslationsTask = tasks.named<DownloadTranslationsTask>("crowdinDownload") {
|
2019-11-17 04:21:36 +00:00
|
|
|
apiKey = "${project.property(crowdinApiKey)}"
|
2020-03-02 22:43:27 +00:00
|
|
|
destination = "${buildDir.resolve("crowdin-i18n")}"
|
2019-11-17 04:21:36 +00:00
|
|
|
projectId = "worldedit-core"
|
|
|
|
}
|
2019-10-13 11:47:26 +00:00
|
|
|
|
2020-03-02 22:43:27 +00:00
|
|
|
tasks.named<Copy>("processResources") {
|
|
|
|
dependsOn(dlTranslationsTask)
|
|
|
|
from(dlTranslationsTask.get().destination) {
|
|
|
|
into("lang")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-14 02:50:59 +00:00
|
|
|
tasks.named("classes") {
|
2019-11-17 04:21:36 +00:00
|
|
|
dependsOn("crowdinDownload")
|
|
|
|
}
|
2019-10-13 11:47:26 +00:00
|
|
|
}
|