aboutsummaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2022-10-12 15:10:34 +0200
committerGitHub <noreply@github.com>2022-10-12 15:10:34 +0200
commit25bc442c783bb94899bb02de0f01af092f82ae81 (patch)
treef1daafe8723caf74fa70d3fe4568c4ebddbccd69 /CONTRIBUTING.md
parent83174361becb2af227159834cdf6e14db9300c53 (diff)
downloaddokka-25bc442c783bb94899bb02de0f01af092f82ae81.tar.gz
dokka-25bc442c783bb94899bb02de0f01af092f82ae81.tar.bz2
dokka-25bc442c783bb94899bb02de0f01af092f82ae81.zip
Update documentation and examples for 1.7.20 (#2697)
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 55c6c020..92bc9105 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.7.10-my-fix-SNAPSHOT`.
+ For instance, you can set it to something like `1.7.20-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.7.10-my-fix-SNAPSHOT"
+ id("org.jetbrains.dokka") version "1.7.20-my-fix-SNAPSHOT"
}
```