Last active
August 29, 2015 14:22
-
-
Save qfrank/71a020e175050b11b9ae to your computer and use it in GitHub Desktop.
Gradle note
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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