Skip to content

Commit

Permalink
Configure 'javadoc' task
Browse files Browse the repository at this point in the history
Signed-off-by: Jendrik Johannes <[email protected]>
  • Loading branch information
jjohannes committed Mar 14, 2024
1 parent 5384dfe commit d7bb746
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ tasks.withType<Test>().configureEach {
systemProperty("HEDERA_NETWORK", providers.gradleProperty("HEDERA_NETWORK").getOrElse(""))
}

tasks.withType<Javadoc>().configureEach {
options {
this as StandardJavadocDocletOptions
encoding = "UTF-8"
addStringOption("Xdoclint:all,-missing", "-quiet")
addStringOption("Xwerror", "-quiet")
}
}

tasks.jacocoTestReport {
// make sure to use any/all test coverage data for the report and run all tests before this report is made
executionData.from(
Expand Down

0 comments on commit d7bb746

Please sign in to comment.