Skip to content

Commit

Permalink
Update dokka for Gradle 7.0.2 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelkliemannel committed Jun 3, 2021
1 parent 0b23085 commit c454202
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import java.net.URI
plugins {
`java-library`
kotlin("jvm") version "1.3.41"
id("org.jetbrains.dokka") version "0.10.1"
id("org.jetbrains.dokka") version "1.4.32"

signing
`maven-publish`
Expand Down Expand Up @@ -34,10 +34,10 @@ tasks {
}

val dokkaJar by creating(Jar::class) {
dependsOn("dokka")
dependsOn("dokkaHtml")
group = "build"
archiveClassifier.set("javadoc")
from(getByPath("dokka").outputs)
from(getByPath("dokkaHtml").outputs)
}

artifacts {
Expand Down

0 comments on commit c454202

Please sign in to comment.