mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-15 04:41:37 +08:00
141 lines
4.4 KiB
Plaintext
141 lines
4.4 KiB
Plaintext
import com.mendhak.gradlecrowdin.DownloadTranslationsTask
|
|
import com.mendhak.gradlecrowdin.UploadSourceFileTask
|
|
import net.minecrell.gradle.licenser.LicenseExtension
|
|
import org.gradle.plugins.ide.idea.model.IdeaModel
|
|
|
|
plugins {
|
|
id("java-library")
|
|
id("net.ltgt.apt-eclipse")
|
|
id("net.ltgt.apt-idea")
|
|
id("antlr")
|
|
id("com.mendhak.gradlecrowdin")
|
|
}
|
|
|
|
applyPlatformAndCoreConfiguration()
|
|
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
force("com.google.guava:guava:21.0")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
"api"(project(":worldedit-libs:core"))
|
|
"implementation"("de.schlichtherle:truezip:6.8.3")
|
|
"implementation"("net.java.truevfs:truevfs-profile-default_2.13:0.12.1")
|
|
"implementation"("org.mozilla:rhino-runtime:1.7.12")
|
|
"implementation"("org.yaml:snakeyaml:1.9")
|
|
"implementation"("com.google.guava:guava:${Versions.GUAVA}")
|
|
"implementation"("com.google.code.findbugs:jsr305:1.3.9")
|
|
"implementation"("com.google.code.gson:gson:${Versions.GSON}")
|
|
"implementation"("org.slf4j:slf4j-api:1.7.26")
|
|
"implementation"("it.unimi.dsi:fastutil:${Versions.FAST_UTIL}")
|
|
|
|
val antlrVersion = "4.7.2"
|
|
"antlr"("org.antlr:antlr4:$antlrVersion")
|
|
"implementation"("org.antlr:antlr4-runtime:$antlrVersion")
|
|
|
|
"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}")
|
|
"testImplementation"("ch.qos.logback:logback-core:${Versions.LOGBACK}")
|
|
"testImplementation"("ch.qos.logback:logback-classic:${Versions.LOGBACK}")
|
|
}
|
|
|
|
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"
|
|
)
|
|
}
|
|
|
|
configure<LicenseExtension> {
|
|
exclude {
|
|
it.file.startsWith(project.buildDir)
|
|
}
|
|
}
|
|
tasks.withType<Checkstyle>().configureEach {
|
|
exclude("com/sk89q/worldedit/antlr/**/*.java")
|
|
}
|
|
|
|
// 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/main/java")
|
|
srcDir("src/legacy/java")
|
|
}
|
|
resources {
|
|
srcDir("src/main/resources")
|
|
}
|
|
}
|
|
|
|
val i18nSource = file("src/main/resources/lang/strings.json")
|
|
val processResources = tasks.named<Copy>("processResources")
|
|
|
|
val crowdinApiKey = "crowdin_apikey"
|
|
if (project.hasProperty(crowdinApiKey) && !gradle.startParameter.isOffline) {
|
|
tasks.named<UploadSourceFileTask>("crowdinUpload") {
|
|
apiKey = "${project.property(crowdinApiKey)}"
|
|
projectId = "worldedit-core"
|
|
files = arrayOf(
|
|
object {
|
|
var name = "strings.json"
|
|
var source = "$i18nSource"
|
|
}
|
|
)
|
|
}
|
|
|
|
val dlTranslationsTask = tasks.named<DownloadTranslationsTask>("crowdinDownload") {
|
|
apiKey = "${project.property(crowdinApiKey)}"
|
|
destination = "${buildDir.resolve("crowdin-i18n")}"
|
|
projectId = "worldedit-core"
|
|
}
|
|
|
|
processResources.configure {
|
|
dependsOn(dlTranslationsTask)
|
|
from(dlTranslationsTask.map { it.destination }) {
|
|
into("lang")
|
|
}
|
|
}
|
|
|
|
tasks.named("classes") {
|
|
dependsOn("crowdinDownload")
|
|
}
|
|
}
|
|
|
|
// allow checking of the source file even without the API key
|
|
val checkTranslationFiles by tasks.registering(TranslationFileCheck::class) {
|
|
dependsOn(processResources)
|
|
sourceFile.set(i18nSource)
|
|
translationFiles.from(fileTree(processResources.map { it.destinationDir }) {
|
|
include("**/lang/**/*.json")
|
|
})
|
|
}
|
|
tasks.named("check") {
|
|
dependsOn(checkTranslationFiles)
|
|
}
|