Skip to content

Commit

Permalink
Fix build on windows (#6257)
Browse files Browse the repository at this point in the history
Issue relates to default encoding picked up for daemons affecting compile, previous approach was launch property which doesn't affect Gradle daemons.
  • Loading branch information
yschimke authored Sep 10, 2020
1 parent e4c3b28 commit 0164696
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 @@ -121,6 +121,10 @@ subprojects { project ->
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}

checkstyleMain.exclude '**/CipherSuite.java'
configurations {
checkstyleConfig
Expand Down

0 comments on commit 0164696

Please sign in to comment.