Skip to content

Commit

Permalink
Merge pull request #21 from jburel/doc_option
Browse files Browse the repository at this point in the history
remove deprecated html flag remove in newer version of Java
  • Loading branch information
jburel authored Dec 21, 2022
2 parents a73d320 + dc35569 commit 90f222a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "org.openmicroscopy"
version = "5.5.4"
version = "5.5.5-SNAPSHOT"

kotlinDslPluginOptions {
experimentalWarning.set(false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ class AdditionalArtifactsPlugin : Plugin<Project> {
// Configure java doc options
val stdOpts = options as StandardJavadocDocletOptions
stdOpts.addStringOption("Xdoclint:none", "-quiet")
if (JavaVersion.current().isJava9Compatible) {
stdOpts.addBooleanOption("html5", true)
}
}

tasks.register<Jar>("sourcesJar") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ class AdditionalArtifactsPlugin : Plugin<Project> {
// Configure java doc options
val stdOpts = options as StandardJavadocDocletOptions
stdOpts.addStringOption("Xdoclint:none", "-quiet")
if (JavaVersion.current().isJava9Compatible) {
stdOpts.addBooleanOption("html5", true)
}
}

tasks.register<Jar>("sourcesJar") {
Expand Down

0 comments on commit 90f222a

Please sign in to comment.