Skip to content

Commit

Permalink
Configure Gradle to use utf-8
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipRoman committed Mar 29, 2021
1 parent 25af097 commit 234a865
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ configurations {
deployerJars
}

compileJava {
options.compilerArgs += ['-encoding', 'UTF-8']
}

javadoc {
options.encoding = 'UTF-8'
}

install {
repositories.mavenInstaller {
pom.version = project.version
Expand Down

0 comments on commit 234a865

Please sign in to comment.