aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-09-01 16:29:50 +0200
committerGitHub <noreply@github.com>2023-09-01 16:29:50 +0200
commit83231c0781a50fdeb05ded348187ae48557a1a1f (patch)
treef06a5b9e78f5b4c468cb22fbe8303c6eb2e693be /README.md
parent02f30b142aa467d3a24cc52a1fe3f2fed7ea1e33 (diff)
downloaddokka-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.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 92f911b4..ff16e45d 100644
--- a/README.md
+++ b/README.md
@@ -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