2019-10-19 05:39:52 +00:00
|
|
|
import net.minecrell.gradle.licenser.LicenseExtension
|
2019-10-13 09:02:47 +00:00
|
|
|
import org.gradle.plugins.ide.idea.model.IdeaModel
|
2019-10-13 11:47:26 +00:00
|
|
|
import com.mendhak.gradlecrowdin.DownloadTranslationsTask
|
|
|
|
import com.mendhak.gradlecrowdin.UploadSourceFileTask
|
2019-10-13 09:02:47 +00:00
|
|
|
|
2019-07-11 00:07:37 +00:00
|
|
|
plugins {
|
|
|
|
id("java-library")
|
|
|
|
id("net.ltgt.apt-eclipse")
|
|
|
|
id("net.ltgt.apt-idea")
|
2019-10-13 09:02:47 +00:00
|
|
|
id("antlr")
|
2019-10-13 11:47:26 +00:00
|
|
|
id("com.mendhak.gradlecrowdin")
|
2019-07-11 00:07:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
applyPlatformAndCoreConfiguration()
|
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy {
|
|
|
|
force("com.google.guava:guava:21.0")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
"compile"(project(":worldedit-libs:core"))
|
|
|
|
"compile"("de.schlichtherle:truezip:6.8.3")
|
2019-07-11 01:55:09 +00:00
|
|
|
"compile"("org.mozilla:rhino:1.7.11")
|
2019-07-11 00:07:37 +00:00
|
|
|
"compile"("org.yaml:snakeyaml:1.9")
|
|
|
|
"compile"("com.google.guava:guava:21.0")
|
|
|
|
"compile"("com.google.code.findbugs:jsr305:1.3.9")
|
|
|
|
"compile"("com.google.code.gson:gson:2.8.0")
|
|
|
|
"compile"("org.slf4j:slf4j-api:1.7.26")
|
2019-08-12 12:06:40 +00:00
|
|
|
"compile"("it.unimi.dsi:fastutil:8.2.1")
|
2019-07-11 00:07:37 +00:00
|
|
|
|
2019-10-13 09:02:47 +00:00
|
|
|
val antlrVersion = "4.7.2"
|
|
|
|
"antlr"("org.antlr:antlr4:$antlrVersion")
|
|
|
|
"implementation"("org.antlr:antlr4-runtime:$antlrVersion")
|
|
|
|
|
2019-07-11 00:07:37 +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}")
|
|
|
|
}
|
|
|
|
|
|
|
|
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"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-10-19 05:39:52 +00:00
|
|
|
configure<LicenseExtension> {
|
|
|
|
exclude {
|
|
|
|
it.file.startsWith(project.buildDir)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tasks.withType<Checkstyle>().configureEach {
|
|
|
|
exclude("com/sk89q/worldedit/antlr/**/*.java")
|
|
|
|
}
|
|
|
|
|
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"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-11 00:07:37 +00:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
|
|
|
srcDir("src/main/java")
|
|
|
|
srcDir("src/legacy/java")
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDir("src/main/resources")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-13 11:47:26 +00:00
|
|
|
|
|
|
|
val crowdinApiKey = "crowdin_apikey"
|
|
|
|
|
2019-10-13 12:06:54 +00:00
|
|
|
if (!project.hasProperty(crowdinApiKey)) ext[crowdinApiKey] = ""
|
|
|
|
|
|
|
|
tasks.named<UploadSourceFileTask>("crowdinUpload") {
|
|
|
|
apiKey = "${project.property(crowdinApiKey)}"
|
|
|
|
projectId = "worldedit-core"
|
|
|
|
files = arrayOf(
|
|
|
|
object {
|
|
|
|
var name = "strings.json"
|
|
|
|
var source = "$projectDir/src/main/resources/lang/strings.json"
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
2019-10-13 11:47:26 +00:00
|
|
|
|
2019-10-13 12:06:54 +00:00
|
|
|
tasks.named<DownloadTranslationsTask>("crowdinDownload") {
|
|
|
|
apiKey = "${project.property(crowdinApiKey)}"
|
|
|
|
destination = "$projectDir/src/main/resources/lang"
|
|
|
|
projectId = "worldedit-core"
|
|
|
|
}
|
2019-10-13 11:47:26 +00:00
|
|
|
|
2019-10-13 12:06:54 +00:00
|
|
|
tasks.named("processResources").configure {
|
|
|
|
dependsOn("crowdinDownload")
|
2019-10-13 11:47:26 +00:00
|
|
|
}
|