Skip to content

Commit

Permalink
build(Gradle): Remove the docsHtmlJar task
Browse files Browse the repository at this point in the history
This task seems to never have been used, so remove it. In case HTML
files should be published to a web site, use the
`dokkatooGeneratePublicationHtml` task directly.

Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
  • Loading branch information
sschuberth committed Dec 20, 2023
1 parent 10c0362 commit d168e88
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions buildSrc/src/main/kotlin/ort-kotlin-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -175,15 +175,6 @@ tasks.register<Jar>("sourcesJar") {
from(sourceSets.main.get().allSource)
}

tasks.register<Jar>("docsHtmlJar") {
description = "Assembles a JAR containing the HTML documentation."
group = "Documentation"

dependsOn(tasks.dokkatooGeneratePublicationHtml)
from(tasks.dokkatooGeneratePublicationHtml.flatMap { it.outputDirectory })
archiveClassifier = "htmldoc"
}

tasks.register<Jar>("docsJavadocJar") {
description = "Assembles a JAR containing the Javadoc documentation."
group = "Documentation"
Expand Down

0 comments on commit d168e88

Please sign in to comment.