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:
0.
apply plugin:
‘java‘
1.
2.
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:
0.
apply plugin:
‘java‘
1.
2.
tasks.withType(Compile) {
3.
options.encoding =
‘UTF-8‘
4.
}
时间: 2024-10-19 02:11:21