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-customFormat-example/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-customFormat-example/build.gradle.kts')
-rw-r--r-- | examples/gradle/dokka-customFormat-example/build.gradle.kts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/gradle/dokka-customFormat-example/build.gradle.kts b/examples/gradle/dokka-customFormat-example/build.gradle.kts index 59760f50..68a3368a 100644 --- a/examples/gradle/dokka-customFormat-example/build.gradle.kts +++ b/examples/gradle/dokka-customFormat-example/build.gradle.kts @@ -1,13 +1,13 @@ import org.jetbrains.dokka.gradle.DokkaTask plugins { - kotlin("jvm") version "1.6.20" - id("org.jetbrains.dokka") version ("1.6.20") + kotlin("jvm") version "1.6.21" + id("org.jetbrains.dokka") version ("1.6.21") } buildscript { dependencies { - classpath("org.jetbrains.dokka:dokka-base:1.6.20") + classpath("org.jetbrains.dokka:dokka-base:1.6.21") } } |