Skip to content

Commit

Permalink
Merge pull request #155 from UMM-CSci-3601/fix-gradle-unicode
Browse files Browse the repository at this point in the history
Specify that Java source files are written in UTF-8
  • Loading branch information
helloworld12321 authored Feb 8, 2021
2 parents f918b78 + d673625 commit 44edb54
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,8 @@ jacocoTestReport {
html.destination file("${buildDir}/jacocoHtml")
}
}

tasks.withType(JavaCompile) {
// All of our source files are written in UTF-8
options.encoding = 'UTF-8'
}

0 comments on commit 44edb54

Please sign in to comment.