From a9283f3652785640ba482b158ac785fbfbaf1f05 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Mon, 27 Dec 2021 18:55:35 +0300 Subject: Update Dokka examples and readme to 1.6.10 (#2293) --- .../parentProject/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts') 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("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))) -- cgit