diff options
author | Paweł Marks <pmarks@virtuslab.com> | 2020-08-03 14:32:13 +0200 |
---|---|---|
committer | Paweł Marks <pmarks@virtuslab.com> | 2020-08-03 14:32:13 +0200 |
commit | e9c9d8205e83269a38f64226e043e08a5877d8cd (patch) | |
tree | 0d80726159305a29bfb0e122688bd8b1b1092d0d /README.md | |
parent | b84bd718c4bbe86eb7d08df7c9ddd68afcf00be2 (diff) | |
download | dokka-e9c9d8205e83269a38f64226e043e08a5877d8cd.tar.gz dokka-e9c9d8205e83269a38f64226e043e08a5877d8cd.tar.bz2 dokka-e9c9d8205e83269a38f64226e043e08a5877d8cd.zip |
Change version in readme to 1.4.0-rc
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -60,7 +60,7 @@ you not only need to add `dokka` to the `build.gradle.kts` file, but you also ne build.gradle.kts: ```kotlin plugins { - id("org.jetbrains.dokka") version "1.4-M3" + id("org.jetbrains.dokka") version "1.4.0-rc" } repositories { @@ -346,7 +346,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-M3") + dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0-rc") } ``` @@ -355,7 +355,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-M3") + plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0-rc") } } ``` @@ -619,7 +619,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/1.4-M3/dokka-cli.jar). +To run Dokka from the command line, download the [Dokka CLI runner](https://github.com/Kotlin/dokka/releases/download/1.4.0-rc/dokka-cli.jar). To generate documentation, run the following command: ``` java -jar dokka-cli.jar <arguments> |