Skip to content

Commit

Permalink
8325075: Enable -Werror for javadoc to fail on any warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrushforth committed Mar 2, 2024
1 parent 45e0cde commit 13f5076
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4278,6 +4278,7 @@ task javadoc(type: Javadoc, dependsOn: createMSPfile) {
}
options.addBooleanOption("XDignore.symbol.file").setValue(true);
options.addBooleanOption("Xdoclint:${DOC_LINT}").setValue(IS_DOC_LINT);
options.addBooleanOption("Werror").setValue(true);
options.addBooleanOption("html5").setValue(true);
options.addBooleanOption("javafx").setValue(true);
options.addBooleanOption("use").setValue(true);
Expand Down

0 comments on commit 13f5076

Please sign in to comment.