diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2022-04-25 22:27:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 22:27:12 +0300 |
commit | 52d066c10a50b0e34f1c390c965a89ae403e07a9 (patch) | |
tree | f4dff036c29625fae1130be63b3fa205fd45f44e /examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts | |
parent | b1acc183368da3352a8b61614f0b943ae865b18b (diff) | |
download | dokka-52d066c10a50b0e34f1c390c965a89ae403e07a9.tar.gz dokka-52d066c10a50b0e34f1c390c965a89ae403e07a9.tar.bz2 dokka-52d066c10a50b0e34f1c390c965a89ae403e07a9.zip |
Update documentation and examples to Dokka 1.6.21 (#2465)
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.kts | 4 |
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 26145325..5ef330cf 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.20") - dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.6.20") + dokkaPlugin("org.jetbrains.dokka:all-modules-page-plugin:1.6.21") + dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.6.21") } val configuredVersion = "0.9" outputDirectory.set(file(projectDir.toPath().resolve(olderVersionsFolder).resolve(configuredVersion))) |