Skip to content

Commit

Permalink
Fix wrong javadoc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi authored Mar 25, 2023
1 parent 87cb673 commit e191a76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildSrc/src/main/kotlin/stdx-publishing.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ publishing {
val platform = name.substringAfterLast('-')
val dokkaJar = tasks.register("${platform}DokkaJar", Jar::class) {
dependsOn("dokkaHtml")
archiveClassifier.set("$platform-javadoc")
archiveClassifier.set("javadoc")
destinationDirectory.set(buildDir.resolve(platform))
from(tasks.getByName("dokkaHtml"))
}
artifact(dokkaJar)
Expand Down

0 comments on commit e191a76

Please sign in to comment.