Merge pull request #557 from TiA4f8R/fix-encoding-errors-windows

Set extractor encoding to UTF-8
This commit is contained in:
Tobi 2021-02-24 15:49:58 +01:00 committed by GitHub
commit 965a66bc87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,9 @@ allprojects {
apply plugin: 'java-library'
apply plugin: 'maven'
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
targetCompatibility = 1.8