为了避免在构建Java源代码时出现有关特殊字符的警告,我将这一行放在我的行中gradle.build,在升级到Gradle 2.0之前,该行运行良好:
gradle.build
tasks.withType(Compile) { options.encoding = "UTF-8" }
升级后,失败并显示以下错误:
Could not find property 'Compile' on root project
我该如何解决?
将行更改为
tasks.withType(JavaCompile) { options.encoding = "UTF-8" }
解决了这个问题。