aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMikhail Zarechenskiy <mikhail.zarechenskiy@jetbrains.com>2020-09-22 13:18:24 +0300
committerMikhail Zarechenskiy <mikhail.zarechenskiy@jetbrains.com>2020-09-22 13:18:24 +0300
commite32bca66e1bf25690fcc54c44cbae367959feb6d (patch)
tree0cda07c9184906433a3f386833b7831f02fd5b9c /README.md
parentbba797735a392c6c829a5333823b66a092b96bb4 (diff)
downloaddokka-e32bca66e1bf25690fcc54c44cbae367959feb6d.tar.gz
dokka-e32bca66e1bf25690fcc54c44cbae367959feb6d.tar.bz2
dokka-e32bca66e1bf25690fcc54c44cbae367959feb6d.zip
Update Dokka version to 1.4.10 in .md files
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index e40876a1..bb5a19a2 100644
--- a/README.md
+++ b/README.md
@@ -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.4.0/](https://kotlin.github.io/dokka/1.4.0/)**
+**Full documentation is available at [https://kotlin.github.io/dokka/1.4.10/](https://kotlin.github.io/dokka/1.4.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
@@ -19,7 +19,7 @@ you not only need to add `org.jetbrains.dokka` to the `build.gradle.kts` file, b
build.gradle.kts:
```kotlin
plugins {
- id("org.jetbrains.dokka") version "1.4.0"
+ id("org.jetbrains.dokka") version "1.4.10"
}
repositories {
@@ -44,7 +44,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.4.0")
+ dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.10")
}
```
@@ -53,7 +53,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.4.0")
+ plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.10")
}
}
```
@@ -169,7 +169,7 @@ Please see the [Dokka Maven example project](https://github.com/JetBrains/kotlin
### Using the Command Line
-To run Dokka from the command line, download the [Dokka CLI runner](https://github.com/Kotlin/dokka/releases/download/v1.4.0/dokka-cli-1.4.0.jar).
+To run Dokka from the command line, download the [Dokka CLI runner](https://github.com/Kotlin/dokka/releases/download/v1.4.10/dokka-cli-1.4.10.jar).
To generate documentation, run the following command:
```
java -jar dokka-cli.jar <arguments>