Gradle: declare UTF-8 encoding for Java compile

This commit is contained in:
Emux 2020-01-02 15:06:47 +02:00
parent 883ed23272
commit b43dfc53e4
No known key found for this signature in database
GPG Key ID: 64ED9980896038C3

View File

@ -50,5 +50,6 @@ subprojects {
tasks.withType(JavaCompile) {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
options.encoding = 'UTF-8'
}
}