Use UTF-8 charset for Java compilation (#8486)

This commit is contained in:
Paint_Ninja 2022-03-06 14:53:15 +00:00 committed by GitHub
parent 03379dea27
commit c1b7b55c9e

View file

@ -199,3 +199,7 @@ publishing {
}
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}