diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-09-01 16:29:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 16:29:50 +0200 |
commit | 83231c0781a50fdeb05ded348187ae48557a1a1f (patch) | |
tree | f06a5b9e78f5b4c468cb22fbe8303c6eb2e693be /README.md | |
parent | 02f30b142aa467d3a24cc52a1fe3f2fed7ea1e33 (diff) | |
download | dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.tar.gz dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.tar.bz2 dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.zip |
Update Dokka's references to 1.9.0 (#3154)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -43,7 +43,7 @@ Apply the Gradle plugin for Dokka in the root build script of your project: ```kotlin plugins { - id("org.jetbrains.dokka") version "1.8.20" + id("org.jetbrains.dokka") version "1.9.0" } ``` @@ -65,7 +65,7 @@ Apply Gradle plugin for Dokka in the root project: ```groovy plugins { - id 'org.jetbrains.dokka' version '1.8.20' + id 'org.jetbrains.dokka' version '1.9.0' } ``` @@ -99,7 +99,7 @@ Add the Dokka Maven plugin to the `plugins` section of your POM file: <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> - <version>1.8.20</version> + <version>1.9.0</version> <executions> <execution> <phase>pre-site</phase> @@ -138,7 +138,7 @@ Android platform: ```kotlin dependencies { - dokkaPlugin("org.jetbrains.dokka:android-documentation-plugin:1.8.20") + dokkaPlugin("org.jetbrains.dokka:android-documentation-plugin:1.9.0") } ``` @@ -149,7 +149,7 @@ dependencies { ```groovy dependencies { - dokkaPlugin 'org.jetbrains.dokka:android-documentation-plugin:1.8.20' + dokkaPlugin 'org.jetbrains.dokka:android-documentation-plugin:1.9.0' } ``` @@ -168,7 +168,7 @@ dependencies { <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>android-documentation-plugin</artifactId> - <version>1.8.20</version> + <version>1.9.0</version> </plugin> </dokkaPlugins> </configuration> @@ -215,7 +215,7 @@ implement plugins for missing or very specific features that are not provided ou Learn more about Dokka plugins and their configuration in [Dokka plugins](https://kotlinlang.org/docs/dokka-plugins.html). If you want to learn how to develop Dokka plugins, see -[Developer guides](https://kotlin.github.io/dokka/1.8.20/developer_guide/introduction/). +[Developer guides](https://kotlin.github.io/dokka/1.9.0/developer_guide/introduction/). ## Community |