diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-03-06 13:12:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-06 13:12:14 +0100 |
commit | ded804e5772399f1495016d598573cb20b673b58 (patch) | |
tree | 5c10a79c464c8a08764f0080d57c48476a5889ce /examples/plugin | |
parent | dca5c3184b22b6efe0626b278f01711118fcaf0d (diff) | |
download | dokka-ded804e5772399f1495016d598573cb20b673b58.tar.gz dokka-ded804e5772399f1495016d598573cb20b673b58.tar.bz2 dokka-ded804e5772399f1495016d598573cb20b673b58.zip |
Update Dokka references to 1.8.10 (#2898)
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 | 2 | ||||
-rw-r--r-- | examples/plugin/hide-internal-api/gradle.properties | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/plugin/hide-internal-api/README.md b/examples/plugin/hide-internal-api/README.md index fe02e025..9e016f68 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.7.20/developer_guide/plugin-development/sample-plugin-tutorial/) +[Sample plugin](https://kotlin.github.io/dokka/1.8.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.7.20/developer_guide/plugin-development/sample-plugin-tutorial/#debugging). +[see documentation](https://kotlin.github.io/dokka/1.8.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 8d335b11..19b270d2 100644 --- a/examples/plugin/hide-internal-api/build.gradle.kts +++ b/examples/plugin/hide-internal-api/build.gradle.kts @@ -3,7 +3,7 @@ import java.net.URI plugins { kotlin("jvm") version "1.8.10" - id("org.jetbrains.dokka") version "1.7.20" + id("org.jetbrains.dokka") version "1.8.10" `maven-publish` signing } diff --git a/examples/plugin/hide-internal-api/gradle.properties b/examples/plugin/hide-internal-api/gradle.properties index 1dce61d6..8d65c730 100644 --- a/examples/plugin/hide-internal-api/gradle.properties +++ b/examples/plugin/hide-internal-api/gradle.properties @@ -1 +1 @@ -dokkaVersion=1.7.20 +dokkaVersion=1.8.10 |