diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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-rc" + id("org.jetbrains.dokka") version "1.4.0" } 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-rc") + dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0") } ``` @@ -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-rc") + plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0") } } ``` @@ -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-rc/dokka-cli-1.4.0-rc.jar). +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 generate documentation, run the following command: ``` java -jar dokka-cli.jar <arguments> |