aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-versioning-multimodule-example
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2022-07-13 12:13:41 +0200
committerGitHub <noreply@github.com>2022-07-13 12:13:41 +0200
commit7cbdcc9ae62d03af5efbab8f5ce2d815f456513a (patch)
tree2e2a90b5a24a4301a611236cdbea31d56fd6296b /examples/gradle/dokka-versioning-multimodule-example
parent0cdb6d4de754ef5381de09be55ebdafa6868caca (diff)
downloaddokka-7cbdcc9ae62d03af5efbab8f5ce2d815f456513a.tar.gz
dokka-7cbdcc9ae62d03af5efbab8f5ce2d815f456513a.tar.bz2
dokka-7cbdcc9ae62d03af5efbab8f5ce2d815f456513a.zip
Update references and documentation to Dokka 1.7.10 (#2566)
Diffstat (limited to 'examples/gradle/dokka-versioning-multimodule-example')
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts4
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
index 55b2eee5..8d6eb8f4 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.7.10"
- id("org.jetbrains.dokka") version ("1.7.0") apply false
+ id("org.jetbrains.dokka") version ("1.7.10") 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.7.0")
+ dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.7.10")
}
}
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 83f7f474..9bc8c991 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.7.0")
- dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.7.0")
+ dokkaPlugin("org.jetbrains.dokka:all-modules-page-plugin:1.7.10")
+ dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.7.10")
}
val configuredVersion = "0.9"
outputDirectory.set(file(projectDir.toPath().resolve(olderVersionsFolder).resolve(configuredVersion)))