Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
Do not fail gradle javadoc task on javadoc comments warnings (#531)
Browse files Browse the repository at this point in the history
Java 17 enforces several javadoc comments warnings which results in EthSigner javadoc task to be failed (called during publish task). This PR updates javadoc task to not fail on reported javadoc comments warnings.
  • Loading branch information
usmansaleem authored Oct 18, 2023
1 parent 9d9e01e commit 8f02e28
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,7 @@ allprojects {
}

javadoc {
options.addStringOption('Xdoclint:all', '-quiet')
options.addStringOption('Xwerror', '-html5')
options.addBooleanOption('Xdoclint:all', true)
options.encoding = 'UTF-8'
}
}
Expand Down

0 comments on commit 8f02e28

Please sign in to comment.