Skip to content

Instantly share code, notes, and snippets.

@qfrank
Last active August 29, 2015 14:22
Show Gist options
  • Save qfrank/71a020e175050b11b9ae to your computer and use it in GitHub Desktop.
Save qfrank/71a020e175050b11b9ae to your computer and use it in GitHub Desktop.
Gradle note
// setting compile encoding:
// compileJava.options.encoding = 'UTF-8'
// compileGroovy.options.encoding = 'UTF-8'
// compileTestGroovy.options.encoding = 'UTF-8'
// compileTestJava.options.encoding = 'UTF-8'
tasks.withType(AbstractCompile) {
options.encoding = 'UTF-8'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment