We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be1e53c commit edbfcf8Copy full SHA for edbfcf8
1 file changed
composeextensions/build.gradle.kts
@@ -65,9 +65,9 @@ dependencies {
65
// Creates a JAR file from the output of the dokkaHtml task.
66
// This is used to publish the documentation along with the library.
67
tasks.register<Jar>("javadocJar") {
68
- dependsOn(tasks.named("dokkaHtml"))
+ dependsOn(tasks.named("dokkaGenerateHtml"))
69
archiveClassifier.set("javadoc")
70
- from(tasks.named("dokkaHtml").map { it.outputs.files })
+ from(tasks.named("dokkaGenerateHtml").map { it.outputs.files })
71
}
72
73
publishing {
0 commit comments