diff options
Diffstat (limited to 'docs/src/doc')
-rw-r--r-- | docs/src/doc/docs/user_guide/cli/usage.md | 2 | ||||
-rw-r--r-- | docs/src/doc/docs/user_guide/gradle/usage.md | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/doc/docs/user_guide/cli/usage.md b/docs/src/doc/docs/user_guide/cli/usage.md index 12bd9eb9..9c73f8d3 100644 --- a/docs/src/doc/docs/user_guide/cli/usage.md +++ b/docs/src/doc/docs/user_guide/cli/usage.md @@ -1,6 +1,6 @@ # Using 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> diff --git a/docs/src/doc/docs/user_guide/gradle/usage.md b/docs/src/doc/docs/user_guide/gradle/usage.md index 2e7243d7..987bc4c0 100644 --- a/docs/src/doc/docs/user_guide/gradle/usage.md +++ b/docs/src/doc/docs/user_guide/gradle/usage.md @@ -10,7 +10,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.0" + id("org.jetbrains.dokka") version "1.4.10" } repositories { @@ -226,7 +226,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") } ``` @@ -235,7 +235,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") } } ``` |