diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-10-16 18:36:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-16 18:36:42 +0200 |
commit | 9bbcc21affe7a2b787c5a8cfb64f416cf226a0fd (patch) | |
tree | ff33ae7a18b2abab6faa65a0233f6a29b166bf24 /examples/plugin | |
parent | 6a55173f0e2c66488aa264d02363db41fb0e1213 (diff) | |
download | dokka-9bbcc21affe7a2b787c5a8cfb64f416cf226a0fd.tar.gz dokka-9bbcc21affe7a2b787c5a8cfb64f416cf226a0fd.tar.bz2 dokka-9bbcc21affe7a2b787c5a8cfb64f416cf226a0fd.zip |
Update Dokka's references to 1.9.10 (#3210)
Diffstat (limited to 'examples/plugin')
-rw-r--r-- | examples/plugin/hide-internal-api/README.md | 4 | ||||
-rw-r--r-- | examples/plugin/hide-internal-api/build.gradle.kts | 4 | ||||
-rw-r--r-- | examples/plugin/hide-internal-api/gradle.properties | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/examples/plugin/hide-internal-api/README.md b/examples/plugin/hide-internal-api/README.md index f186d2e0..d06e97b5 100644 --- a/examples/plugin/hide-internal-api/README.md +++ b/examples/plugin/hide-internal-api/README.md @@ -1,7 +1,7 @@ # Hide Internal API plugin example This project represents a simple Dokka Plugin that was developed step-by-step in the -[Sample plugin](https://kotlin.github.io/dokka/1.9.0/developer_guide/plugin-development/sample-plugin-tutorial/) +[Sample plugin](https://kotlin.github.io/dokka/1.9.10/developer_guide/plugin-development/sample-plugin-tutorial/) tutorial. This is a frequent request with varying requirements. The plugin excludes any declaration that is marked with `org.jetbrains.dokka.internal.test.Internal` annotation. @@ -9,7 +9,7 @@ The annotation itself is not provided in this project and is instead matched by You can change it to your own internal annotation or to some other marker that suits you. To learn how to install and debug it locally, -[see documentation](https://kotlin.github.io/dokka/1.9.0/developer_guide/plugin-development/sample-plugin-tutorial/#debugging). +[see documentation](https://kotlin.github.io/dokka/1.9.10/developer_guide/plugin-development/sample-plugin-tutorial/#debugging). ___ diff --git a/examples/plugin/hide-internal-api/build.gradle.kts b/examples/plugin/hide-internal-api/build.gradle.kts index bdbf3658..26651015 100644 --- a/examples/plugin/hide-internal-api/build.gradle.kts +++ b/examples/plugin/hide-internal-api/build.gradle.kts @@ -7,8 +7,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile import java.net.URI plugins { - kotlin("jvm") version "1.9.0" - id("org.jetbrains.dokka") version "1.9.0" + kotlin("jvm") version "1.9.10" + id("org.jetbrains.dokka") version "1.9.10" `maven-publish` signing } diff --git a/examples/plugin/hide-internal-api/gradle.properties b/examples/plugin/hide-internal-api/gradle.properties index 40669a38..a3f59a07 100644 --- a/examples/plugin/hide-internal-api/gradle.properties +++ b/examples/plugin/hide-internal-api/gradle.properties @@ -2,4 +2,4 @@ # Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. # -dokkaVersion=1.9.0 +dokkaVersion=1.9.10 |