diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-09-01 16:29:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 16:29:50 +0200 |
commit | 83231c0781a50fdeb05ded348187ae48557a1a1f (patch) | |
tree | f06a5b9e78f5b4c468cb22fbe8303c6eb2e693be /docs-developer/src/doc/docs | |
parent | 02f30b142aa467d3a24cc52a1fe3f2fed7ea1e33 (diff) | |
download | dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.tar.gz dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.tar.bz2 dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.zip |
Update Dokka's references to 1.9.0 (#3154)
Diffstat (limited to 'docs-developer/src/doc/docs')
-rw-r--r-- | docs-developer/src/doc/docs/developer_guide/workflow.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs-developer/src/doc/docs/developer_guide/workflow.md b/docs-developer/src/doc/docs/developer_guide/workflow.md index 7db5382d..26452281 100644 --- a/docs-developer/src/doc/docs/developer_guide/workflow.md +++ b/docs-developer/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.8.20-my-fix-SNAPSHOT`. This version will be propagated to plugins + For instance, you can set it to something like `1.9.0-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.8.20-my-fix-SNAPSHOT" + id("org.jetbrains.dokka") version "1.9.0-my-fix-SNAPSHOT" } ``` |