「Spring入門」Gradleで文字エンコーディングを指定する
サンプルコード
def defaultEncoding = 'UTF-8’
tasks.withType(AbstractCompile).each { it.options.encoding = defaultEncoding }
tasks.withType(GroovyCompile).each { it.groovyOptions.encoding = defaultEncoding }
Coding Changes the World
サンプルコード
def defaultEncoding = 'UTF-8’
tasks.withType(AbstractCompile).each { it.options.encoding = defaultEncoding }
tasks.withType(GroovyCompile).each { it.groovyOptions.encoding = defaultEncoding }