aboutsummaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2022-04-25 22:27:12 +0300
committerGitHub <noreply@github.com>2022-04-25 22:27:12 +0300
commit52d066c10a50b0e34f1c390c965a89ae403e07a9 (patch)
treef4dff036c29625fae1130be63b3fa205fd45f44e /CONTRIBUTING.md
parentb1acc183368da3352a8b61614f0b943ae865b18b (diff)
downloaddokka-52d066c10a50b0e34f1c390c965a89ae403e07a9.tar.gz
dokka-52d066c10a50b0e34f1c390c965a89ae403e07a9.tar.bz2
dokka-52d066c10a50b0e34f1c390c965a89ae403e07a9.zip
Update documentation and examples to Dokka 1.6.21 (#2465)
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index ac48e6e4..05902821 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -29,13 +29,13 @@ Here's how to import and configure Dokka in IntelliJ IDEA:
If you want to use/test your locally built Dokka in a project, do the following:
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.6.20-my-fix-SNAPSHOT`.
+ For instance, you can set it to something like `1.6.21-my-fix-SNAPSHOT`.
2. Publish it to maven local (`./gradlew publishToMavenLocal`)
3. In the project you want to generate documentation for, add maven local as a plugin/dependency
repository (`mavenLocal()`)
4. Update your dokka dependency to the version you've just published:
```kotlin
plugins {
- id("org.jetbrains.dokka") version "1.6.20-my-fix-SNAPSHOT"
+ id("org.jetbrains.dokka") version "1.6.21-my-fix-SNAPSHOT"
}
```