diff options
author | IgnatBeresnev <ignat.beresnev@jetbrains.com> | 2023-01-14 01:08:04 +0100 |
---|---|---|
committer | IgnatBeresnev <ignat.beresnev@jetbrains.com> | 2023-01-14 01:08:04 +0100 |
commit | 0a3119451b49a7c1bb2bd1a09e57fb3fd5c0adba (patch) | |
tree | 1eb278fb18db5c493b46e1222de95cc08d2dc1ca /docs/topics/runners | |
parent | ac932d43649a9b79780b0961f579e964f33d285e (diff) | |
download | dokka-0a3119451b49a7c1bb2bd1a09e57fb3fd5c0adba.tar.gz dokka-0a3119451b49a7c1bb2bd1a09e57fb3fd5c0adba.tar.bz2 dokka-0a3119451b49a7c1bb2bd1a09e57fb3fd5c0adba.zip |
Fix webhelp compilation errors
Diffstat (limited to 'docs/topics/runners')
-rw-r--r-- | docs/topics/runners/dokka-gradle.md | 25 | ||||
-rw-r--r-- | docs/topics/runners/dokka-maven.md | 2 |
2 files changed, 4 insertions, 23 deletions
diff --git a/docs/topics/runners/dokka-gradle.md b/docs/topics/runners/dokka-gradle.md index 21a42322..81e0a2f7 100644 --- a/docs/topics/runners/dokka-gradle.md +++ b/docs/topics/runners/dokka-gradle.md @@ -72,24 +72,7 @@ See [Configuration examples](#configuration-examples) if you are not sure where > If you are using Dokka in a > [precompiled script plugin](https://docs.gradle.org/current/userguide/custom_plugins.html#sec:precompiled_plugins), > you need to add the [Kotlin Gradle plugin](https://kotlinlang.org/docs/gradle-configure-project.html#apply-the-plugin) -> as a dependency for it to work properly: -> -> <tabs group="build-script"> -> <tab title="Kotlin" group-key="kotlin"> -> -> ```kotlin -> implementation(kotlin("gradle-plugin", "%kotlinVersion%")) -> ``` -> -> </tab> -> <tab title="Groovy" group-key="groovy"> -> -> ```groovy -> implementation 'org.jetbrains.kotlin:kotlin-gradle-plugin:%kotlinVersion%' -> ``` -> -> </tab> -> </tabs> +> as a dependency for it to work properly. > {type="note"} @@ -107,7 +90,7 @@ and [multi-project](#multi-project-builds) builds. Use the following tasks to build documentation for simple, single-project applications and libraries: -#### Stable formats +#### Beta formats | **Task** | **Description** | |----------------|-------------------------------------------------------------------------------------| @@ -138,13 +121,13 @@ cross-project references. Dokka creates the following tasks for **parent** projects automatically: -#### Stable formats +#### Beta formats (multi-module) | **Task** | **Description** | |--------------------------|------------------------------------------------------------------------| | `dokkaHtmlMultiModule` | Generates multi-module documentation in [HTML](dokka-html.md) output format. | -#### Experimental formats +#### Experimental formats (multi-module) | **Task** | **Description** | |--------------------------|---------------------------------------------------------------------------------------------------------| diff --git a/docs/topics/runners/dokka-maven.md b/docs/topics/runners/dokka-maven.md index 9bedc517..252abb6f 100644 --- a/docs/topics/runners/dokka-maven.md +++ b/docs/topics/runners/dokka-maven.md @@ -38,8 +38,6 @@ To apply Dokka, you need to add `dokka-maven-plugin` to the `plugins` section of The following goals are provided by the Maven plugin: -### Stable - | **Goal** | **Description** | |---------------|----------------------------------------------------------------------------------------| | `dokka:dokka` | Generates documentation with Dokka plugins applied. [HTML](dokka-html.md) format by default. | |