Skip to content

Commit 8c9afad

Browse files
authoredApr 20, 2019
Force UTF-8 for all Javadoc tasks (#940)
Will also now fail on error
1 parent 11bfded commit 8c9afad

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎build.gradle.kts

+5-3
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ javaSubprojects {
149149

150150
tasks.withType<Javadoc> {
151151
source(tasks.named<JavaCompile>("compileJava").map { it.source })
152-
options.encoding = "UTF-8"
153152
}
154153

155154
tasks.named("check").configure {
@@ -183,6 +182,9 @@ tasks.register<JacocoReport>("jacocoRootReport") {
183182
}
184183
}
185184

186-
tasks.withType<Javadoc> {
187-
isFailOnError = false
185+
allprojects {
186+
tasks.withType<Javadoc> {
187+
options.encoding = "UTF-8"
188+
isFailOnError = true
189+
}
188190
}

0 commit comments

Comments
 (0)