aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-versioning-multimodule-example
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
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')
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts6
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts6
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
index 3eeedb79..a62a7fa5 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
@@ -1,6 +1,6 @@
plugins {
- kotlin("jvm") version "1.6.21"
- id("org.jetbrains.dokka") version ("1.6.21") apply false
+ kotlin("jvm") version "1.7.0"
+ id("org.jetbrains.dokka") version ("1.7.0") apply false
}
// The versioning plugin should be applied in all submodules
@@ -14,6 +14,6 @@ subprojects {
}
val dokkaPlugin by configurations
dependencies {
- dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.6.21")
+ dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.7.0")
}
}
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
+}