Skip to content

Instantly share code, notes, and snippets.

@VottusCode
Created April 26, 2021 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VottusCode/62c4b056d8d0eb62338d1350ea81c4aa to your computer and use it in GitHub Desktop.
Save VottusCode/62c4b056d8d0eb62338d1350ea81c4aa to your computer and use it in GitHub Desktop.
Explicitly set UTF-8 in Gradle (build.gradle.kts)
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
tasks.withType<Javadoc>{
options.encoding = "UTF-8"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment