Skip to content

Commit

Permalink
Fix switched Dokka artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcono1234 committed Sep 22, 2024
1 parent 7be5a8b commit a800138
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -300,13 +300,13 @@ val dokkaJavadocJar by tasks.registering(Jar::class) {
group = "Build"
description = "Assembles a jar archive containing Javadoc documentation."
archiveClassifier = "javadoc"
from(tasks.dokkaHtml.flatMap { it.outputDirectory })
from(tasks.dokkaJavadoc.flatMap { it.outputDirectory })
}
val dokkaHtmlJar by tasks.registering(Jar::class) {
group = "Build"
description = "Assembles a jar archive containing Dokka HTML documentation."
archiveClassifier = "dokka-html"
from(tasks.dokkaJavadoc.flatMap { it.outputDirectory })
from(tasks.dokkaHtml.flatMap { it.outputDirectory })
}

val sourcesJar by tasks.registering(Jar::class) {
Expand Down

0 comments on commit a800138

Please sign in to comment.