Gradle Goodness: Set Java Compiler Encoding
Gradle Goodness: Set Java Compiler Encoding
Join the DZone community and get the full member experience.
Join For FreeRead why times series is the fastest growing database category.
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(Compile) { options.encoding = 'UTF-8' }
Learn how to get 20x more performance than Elastic by moving to a Time Series database.
Published at DZone with permission of Hubert Klein Ikkink , DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
{{ parent.title || parent.header.title}}
{{ parent.tldr }}
{{ parent.linkDescription }}
{{ parent.urlSource.name }}