superlord9362 / GoblinsAndDungeons

7 stars 8 forks source link

Ensure compiled java output is utf-8 #41

Closed solonovamax closed 9 months ago

solonovamax commented 9 months ago

Adds

tasks.withType(JavaCompile).configureEach {
    options.encoding = 'UTF-8'
}

to build.gradle.

The is standard practice, and should always be done.