aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat@beresnev.me>2021-12-27 18:55:35 +0300
committerGitHub <noreply@github.com>2021-12-27 18:55:35 +0300
commita9283f3652785640ba482b158ac785fbfbaf1f05 (patch)
tree0075f02cf2b46332e67e4b80f4e5c9628ce62dd5 /examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
parent39f45564edd22b0c51752ff8ab9a2caa66e37220 (diff)
downloaddokka-a9283f3652785640ba482b158ac785fbfbaf1f05.tar.gz
dokka-a9283f3652785640ba482b158ac785fbfbaf1f05.tar.bz2
dokka-a9283f3652785640ba482b158ac785fbfbaf1f05.zip
Update Dokka examples and readme to 1.6.10 (#2293)
Diffstat (limited to 'examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts')
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
index 3abd1ab3..1093e3e8 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
@@ -9,8 +9,8 @@ val olderVersionsFolder = "olderVersions"
// The previously documentations should be generated with the versioning plugin
val generatePreviouslyDocTask by tasks.register<DokkaMultiModuleTask>("dokkaPreviouslyDocumentation") {
dependencies {
- dokkaPlugin("org.jetbrains.dokka:all-modules-page-plugin:1.6.0")
- dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.6.0")
+ dokkaPlugin("org.jetbrains.dokka:all-modules-page-plugin:1.6.10")
+ dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.6.10")
}
val configuredVersion = "0.9"
outputDirectory.set(file(projectDir.toPath().resolve(olderVersionsFolder).resolve(configuredVersion)))