Skip to content

Commit 908fa2d

Browse files
Bump org.jetbrains.dokka from 1.9.20 to 2.0.0 (#165)
* Bump org.jetbrains.dokka from 1.9.20 to 2.0.0 Bumps [org.jetbrains.dokka](https://github.com/Kotlin/dokka) from 1.9.20 to 2.0.0. - [Release notes](https://github.com/Kotlin/dokka/releases) - [Commits](Kotlin/dokka@v1.9.20...v2.0.0) --- updated-dependencies: - dependency-name: org.jetbrains.dokka dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Use Dokka v2 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Stefan M. <StefMa@users.noreply.github.com>
1 parent b385a5b commit 908fa2d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ java {
3333
}
3434

3535
val dokkaJar = tasks.register<Jar>("dokkaJar") {
36-
dependsOn(tasks.dokkaHtml)
37-
from(tasks.dokkaHtml.flatMap { it.outputDirectory })
36+
dependsOn(tasks.dokkaGenerate)
37+
from(tasks.dokkaGeneratePublicationHtml.flatMap { it.outputDirectory })
3838
archiveClassifier.set("javadoc")
3939
}
4040

gradle.properties

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
kotlin.code.style=official
22
org.gradle.jvmargs=-Xmx6g
3-
org.gradle.caching=true
3+
org.gradle.caching=true
4+
5+
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
6+
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ test-strikt = "io.strikt:strikt-core:0.35.1"
55

66
[plugins]
77
kotlin = "org.jetbrains.kotlin.jvm:2.1.0"
8-
dokka = "org.jetbrains.dokka:1.9.20"
8+
dokka = "org.jetbrains.dokka:2.0.0"

0 commit comments

Comments
 (0)