gradle build: setup javadoc charset

This commit is contained in:
Alexey Andreev 2023-02-02 10:59:40 +01:00
parent 895ec99826
commit 389f689dab

View File

@ -65,6 +65,9 @@ gradle.allprojects {
tasks.withType<JavaCompile>().configureEach { tasks.withType<JavaCompile>().configureEach {
options.encoding = "UTF-8" options.encoding = "UTF-8"
} }
tasks.withType<Javadoc>().configureEach {
options.encoding = "UTF-8"
}
} }
gradle.afterProject { gradle.afterProject {