diff options
author | Ignat Beresnev <ignat@beresnev.me> | 2021-12-27 18:55:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-27 18:55:35 +0300 |
commit | a9283f3652785640ba482b158ac785fbfbaf1f05 (patch) | |
tree | 0075f02cf2b46332e67e4b80f4e5c9628ce62dd5 /README.md | |
parent | 39f45564edd22b0c51752ff8ab9a2caa66e37220 (diff) | |
download | dokka-a9283f3652785640ba482b158ac785fbfbaf1f05.tar.gz dokka-a9283f3652785640ba482b158ac785fbfbaf1f05.tar.bz2 dokka-a9283f3652785640ba482b158ac785fbfbaf1f05.zip |
Update Dokka examples and readme to 1.6.10 (#2293)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -7,7 +7,7 @@ and can generate documentation in multiple formats including standard Javadoc, H ## Using Dokka -**Full documentation is available at [https://kotlin.github.io/dokka/1.6.0/](https://kotlin.github.io/dokka/1.6.0/)** +**Full documentation is available at [https://kotlin.github.io/dokka/1.6.10/](https://kotlin.github.io/dokka/1.6.10/)** ### Using the Gradle plugin _Note: If you are upgrading from 0.10.x to a current release of Dokka, please have a look at our @@ -18,7 +18,7 @@ The preferred way is to use `plugins` block. build.gradle.kts: ```kotlin plugins { - id("org.jetbrains.dokka") version "1.6.0" + id("org.jetbrains.dokka") version "1.6.10" } repositories { @@ -33,7 +33,7 @@ Dokka plugin creates Gradle configuration for each output format in the form of ```kotlin dependencies { - dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.6.0") + dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.6.10") } ``` @@ -42,7 +42,7 @@ You can also create a custom Dokka task and add plugins directly inside: ```kotlin val customDokkaTask by creating(DokkaTask::class) { dependencies { - plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.6.0") + plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.6.10") } } ``` |