We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11bfded commit 8c9afadCopy full SHA for 8c9afad
build.gradle.kts
@@ -149,7 +149,6 @@ javaSubprojects {
149
150
tasks.withType<Javadoc> {
151
source(tasks.named<JavaCompile>("compileJava").map { it.source })
152
- options.encoding = "UTF-8"
153
}
154
155
tasks.named("check").configure {
@@ -183,6 +182,9 @@ tasks.register<JacocoReport>("jacocoRootReport") {
183
182
184
185
186
-tasks.withType<Javadoc> {
187
- isFailOnError = false
+allprojects {
+ tasks.withType<Javadoc> {
+ options.encoding = "UTF-8"
188
+ isFailOnError = true
189
+ }
190
0 commit comments