Skip to content

Commit

Permalink
Setup utf-8 encoding. Was trying to get utf-8 symbols to work in the …
Browse files Browse the repository at this point in the history
…messaging.
  • Loading branch information
rbluer committed Mar 23, 2021
1 parent f7189d3 commit 50b693f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ org.gradle.console=rich
##org.gradle.logging.level=(quiet,warn,lifecycle,info,debug)
org.gradle.logging.level=lifecycle


## This allows gradle to compile java source with utf-8 encodeing
## NOTE: The file must be encoded with utf-8 or it will not help corrupted files.
systemProp.file.encoding=utf-8

compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
javadoc.options.encoding = 'UTF-8'

xlint:deprecation


0 comments on commit 50b693f

Please sign in to comment.