Gradleパッケージで警告:GBKをエンコードするマッピング不可文字の問題


gradle 2.0以前のバージョンではbuild.gradleの最後に
tasks.withType(Compile) {  
    options.encoding = "UTF-8"  
}  

  
 
gradle 2.0以降のバージョンではbuild.gradleの最後に
tasks.withType(JavaCompile) { options.encoding = "UTF-8" }

 
Compile に名前が変更されました  JavaCompile
Groovy sourcesを設定にはtasks.withType(GroovyCompile) { groovyOptions.encoding = "UTF-8" }を使用する.
Scala sourcesを設定、tasks.withType(ScalaCompile) { scalaCompileOptions.encoding = "UTF-8" }を使用する.