Merge pull request #5825 from skozyr/patch-1

Added explicit Java source encoding
This commit is contained in:
vshcherb 2018-08-19 10:03:21 +03:00 committed by GitHub
commit d6d2c547ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,6 +8,7 @@ configurations {
tasks.withType(JavaCompile) { tasks.withType(JavaCompile) {
sourceCompatibility = "1.7" sourceCompatibility = "1.7"
targetCompatibility = "1.7" targetCompatibility = "1.7"
options.encoding = 'UTF-8'
} }
task collectRoutingResources(type: Sync) { task collectRoutingResources(type: Sync) {