Skip to content

Commit

Permalink
Add HTML5 option for Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
lpellegr committed May 8, 2023
1 parent 654073d commit 0d6970e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@ signing {
sign publishing.publications.mavenJava
}

javadoc {
if(JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
}

sourceSets {
integrationTest {
compileClasspath += sourceSets.main.output
Expand Down

0 comments on commit 0d6970e

Please sign in to comment.