aboutsummaryrefslogtreecommitdiff
path: root/mkdocs
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-03-06 13:12:14 +0100
committerGitHub <noreply@github.com>2023-03-06 13:12:14 +0100
commitded804e5772399f1495016d598573cb20b673b58 (patch)
tree5c10a79c464c8a08764f0080d57c48476a5889ce /mkdocs
parentdca5c3184b22b6efe0626b278f01711118fcaf0d (diff)
downloaddokka-ded804e5772399f1495016d598573cb20b673b58.tar.gz
dokka-ded804e5772399f1495016d598573cb20b673b58.tar.bz2
dokka-ded804e5772399f1495016d598573cb20b673b58.zip
Update Dokka references to 1.8.10 (#2898)
Diffstat (limited to 'mkdocs')
-rw-r--r--mkdocs/src/doc/docs/developer_guide/workflow.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkdocs/src/doc/docs/developer_guide/workflow.md b/mkdocs/src/doc/docs/developer_guide/workflow.md
index ddf37459..e010d5d6 100644
--- a/mkdocs/src/doc/docs/developer_guide/workflow.md
+++ b/mkdocs/src/doc/docs/developer_guide/workflow.md
@@ -42,7 +42,7 @@ Having built Dokka locally, you can publish it to `mavenLocal()`. This will allo
project as well as debug code remotely.
1. Change `dokka_version` in `gradle.properties` to something that you will use later on as the dependency version.
- For instance, you can set it to something like `1.7.20-my-fix-SNAPSHOT`. This version will be propagated to plugins
+ For instance, you can set it to something like `1.8.10-my-fix-SNAPSHOT`. This version will be propagated to plugins
that reside inside Dokka's project (such as `mathjax`, `kotlin-as-java`, etc).
2. Publish it to maven local (`./gradlew publishToMavenLocal`). Corresponding artifacts should appear in `~/.m2`
3. In the project you want to generate documentation for or debug on, add maven local as a plugin/dependency
@@ -55,7 +55,7 @@ repositories {
4. Update your dokka dependency to the version you've just published:
```kotlin
plugins {
- id("org.jetbrains.dokka") version "1.7.20-my-fix-SNAPSHOT"
+ id("org.jetbrains.dokka") version "1.8.10-my-fix-SNAPSHOT"
}
```