Skip to content

Commit

Permalink
Fix unit tests on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnou committed Apr 13, 2022
1 parent fdc0f30 commit 9db30f6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ configurations {

compileJava {
options.compilerArgs += '-proc:none'
options.encoding = 'UTF-8'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}


Expand Down

0 comments on commit 9db30f6

Please sign in to comment.