aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-versioning-multimodule-example/parentProject
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2022-06-20 16:17:20 +0200
committerGitHub <noreply@github.com>2022-06-20 16:17:20 +0200
commitfc86d2125db751fcb93ed25e1d8e87577adcaa6a (patch)
treece8de0394cfc8619f40035875b4f63bc8c1f47db /examples/gradle/dokka-versioning-multimodule-example/parentProject
parenta9b86d78c90ed18a838ed76dbd0468799c77c13f (diff)
downloaddokka-fc86d2125db751fcb93ed25e1d8e87577adcaa6a.tar.gz
dokka-fc86d2125db751fcb93ed25e1d8e87577adcaa6a.tar.bz2
dokka-fc86d2125db751fcb93ed25e1d8e87577adcaa6a.zip
Update documentation and examples to Dokka 1.7.0 (#2542)
Diffstat (limited to 'examples/gradle/dokka-versioning-multimodule-example/parentProject')
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts6
1 files changed, 3 insertions, 3 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 5ef330cf..83f7f474 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.21")
- dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.6.21")
+ dokkaPlugin("org.jetbrains.dokka:all-modules-page-plugin:1.7.0")
+ dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.7.0")
}
val configuredVersion = "0.9"
outputDirectory.set(file(projectDir.toPath().resolve(olderVersionsFolder).resolve(configuredVersion)))
@@ -22,4 +22,4 @@ tasks.dokkaHtmlMultiModule {
dependsOn(generatePreviouslyDocTask)
val configuredVersion = "1.0"
pluginsMapConfiguration.set(mapOf("org.jetbrains.dokka.versioning.VersioningPlugin" to """{ "version": "$configuredVersion", "olderVersionsDir": "$projectDir/$olderVersionsFolder" }"""))
-} \ No newline at end of file
+}