Gradle Goodness: Set Java Compiler Encoding载
原文地址:http://java.dzone.com/articles/gradle-goodness-set-java
If we want to set an explicit encoding for the Java compiler in Gradle we can use the options.encoding property. For example we could add the following line to our Gradle build file to change the encoding for the compileJava task:
apply plugin: ‘java‘
compileJava.options.encoding = ‘UTF-8‘
To set the encoding property on all compile tasks in our project we can use the withType() method on the TaskContainer to find all tasks of type Compile. Then we can set the encoding in the configuration closure:
apply plugin: ‘java‘ tasks.withType(JavaCompile
)
{ options.encoding = ‘UTF-8‘ }
gradle->eclipse
编辑build.gradle文件,在文件最前面增加一行:
apply plugin: ‘eclipse‘
gradle eclipse
忽略测试使用命令:
gradle build -x test
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。