aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-09-01 16:29:50 +0200
committerGitHub <noreply@github.com>2023-09-01 16:29:50 +0200
commit83231c0781a50fdeb05ded348187ae48557a1a1f (patch)
treef06a5b9e78f5b4c468cb22fbe8303c6eb2e693be /examples
parent02f30b142aa467d3a24cc52a1fe3f2fed7ea1e33 (diff)
downloaddokka-83231c0781a50fdeb05ded348187ae48557a1a1f.tar.gz
dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.tar.bz2
dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.zip
Update Dokka's references to 1.9.0 (#3154)
Diffstat (limited to 'examples')
-rw-r--r--examples/gradle/dokka-customFormat-example/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-gradle-example/build.gradle.kts2
-rw-r--r--examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts8
-rw-r--r--examples/gradle/dokka-library-publishing-example/build.gradle.kts2
-rw-r--r--examples/gradle/dokka-multimodule-example/gradle.properties2
-rw-r--r--examples/gradle/dokka-multiplatform-example/build.gradle.kts2
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts2
-rw-r--r--examples/maven/pom.xml2
-rw-r--r--examples/plugin/hide-internal-api/README.md4
-rw-r--r--examples/plugin/hide-internal-api/build.gradle.kts2
-rw-r--r--examples/plugin/hide-internal-api/gradle.properties2
12 files changed, 18 insertions, 18 deletions
diff --git a/examples/gradle/dokka-customFormat-example/build.gradle.kts b/examples/gradle/dokka-customFormat-example/build.gradle.kts
index ba6d1cb6..280b8edb 100644
--- a/examples/gradle/dokka-customFormat-example/build.gradle.kts
+++ b/examples/gradle/dokka-customFormat-example/build.gradle.kts
@@ -8,12 +8,12 @@ import org.jetbrains.dokka.base.DokkaBaseConfiguration
plugins {
kotlin("jvm") version "1.9.0"
- id("org.jetbrains.dokka") version "1.8.20"
+ id("org.jetbrains.dokka") version "1.9.0"
}
buildscript {
dependencies {
- classpath("org.jetbrains.dokka:dokka-base:1.8.20")
+ classpath("org.jetbrains.dokka:dokka-base:1.9.0")
}
}
diff --git a/examples/gradle/dokka-gradle-example/build.gradle.kts b/examples/gradle/dokka-gradle-example/build.gradle.kts
index 67d3007b..0d09f96f 100644
--- a/examples/gradle/dokka-gradle-example/build.gradle.kts
+++ b/examples/gradle/dokka-gradle-example/build.gradle.kts
@@ -7,7 +7,7 @@ import java.net.URL
plugins {
kotlin("jvm") version "1.9.0"
- id("org.jetbrains.dokka") version "1.8.20"
+ id("org.jetbrains.dokka") version "1.9.0"
}
repositories {
diff --git a/examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts b/examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts
index 62cec64d..f9711883 100644
--- a/examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts
+++ b/examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts
@@ -4,7 +4,7 @@
plugins {
kotlin("jvm") version "1.9.0"
- id("org.jetbrains.dokka") version "1.8.20"
+ id("org.jetbrains.dokka") version "1.9.0"
}
repositories {
@@ -15,11 +15,11 @@ dependencies {
testImplementation(kotlin("test-junit"))
// Will apply the plugin to all Dokka tasks
- dokkaPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
+ dokkaPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")
// Will apply the plugin only to the `:dokkaHtml` task
- //dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
+ //dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")
// Will apply the plugin only to the `:dokkaGfm` task
- //dokkaGfmPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
+ //dokkaGfmPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")
}
diff --git a/examples/gradle/dokka-library-publishing-example/build.gradle.kts b/examples/gradle/dokka-library-publishing-example/build.gradle.kts
index d6fa25f7..003aa04f 100644
--- a/examples/gradle/dokka-library-publishing-example/build.gradle.kts
+++ b/examples/gradle/dokka-library-publishing-example/build.gradle.kts
@@ -4,7 +4,7 @@
plugins {
kotlin("jvm") version "1.9.0"
- id("org.jetbrains.dokka") version "1.8.20"
+ id("org.jetbrains.dokka") version "1.9.0"
`java-library`
`maven-publish`
}
diff --git a/examples/gradle/dokka-multimodule-example/gradle.properties b/examples/gradle/dokka-multimodule-example/gradle.properties
index fac57ddd..fda31413 100644
--- a/examples/gradle/dokka-multimodule-example/gradle.properties
+++ b/examples/gradle/dokka-multimodule-example/gradle.properties
@@ -3,4 +3,4 @@
#
kotlinVersion=1.9.0
-dokkaVersion=1.8.20
+dokkaVersion=1.9.0
diff --git a/examples/gradle/dokka-multiplatform-example/build.gradle.kts b/examples/gradle/dokka-multiplatform-example/build.gradle.kts
index 33e20f3a..56c03564 100644
--- a/examples/gradle/dokka-multiplatform-example/build.gradle.kts
+++ b/examples/gradle/dokka-multiplatform-example/build.gradle.kts
@@ -9,7 +9,7 @@ import org.jetbrains.dokka.Platform
plugins {
kotlin("multiplatform") version "1.9.0"
- id("org.jetbrains.dokka") version "1.8.20"
+ id("org.jetbrains.dokka") version "1.9.0"
}
repositories {
diff --git a/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
index 44b0b757..3984caa5 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
@@ -4,7 +4,7 @@
plugins {
kotlin("jvm") version "1.9.0"
- id("org.jetbrains.dokka") version "1.8.20" apply false
+ id("org.jetbrains.dokka") version "1.9.0" apply false
}
// The versioning plugin must be applied in all submodules
@@ -18,6 +18,6 @@ subprojects {
}
val dokkaPlugin by configurations
dependencies {
- dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.8.20")
+ dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.9.0")
}
}
diff --git a/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
index 2cca3274..4bcee160 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
@@ -8,7 +8,7 @@ import org.jetbrains.dokka.versioning.VersioningConfiguration
buildscript {
dependencies {
- classpath("org.jetbrains.dokka:versioning-plugin:1.8.20")
+ classpath("org.jetbrains.dokka:versioning-plugin:1.9.0")
}
repositories {
diff --git a/examples/maven/pom.xml b/examples/maven/pom.xml
index 66e42847..811e4902 100644
--- a/examples/maven/pom.xml
+++ b/examples/maven/pom.xml
@@ -13,7 +13,7 @@
<version>1.0-SNAPSHOT</version>
<properties>
<kotlin.version>1.9.0</kotlin.version>
- <dokka.version>1.8.20</dokka.version>
+ <dokka.version>1.9.0</dokka.version>
</properties>
<dependencies>
diff --git a/examples/plugin/hide-internal-api/README.md b/examples/plugin/hide-internal-api/README.md
index 451303cb..f186d2e0 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.8.20/developer_guide/plugin-development/sample-plugin-tutorial/)
+[Sample plugin](https://kotlin.github.io/dokka/1.9.0/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.8.20/developer_guide/plugin-development/sample-plugin-tutorial/#debugging).
+[see documentation](https://kotlin.github.io/dokka/1.9.0/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 2d167a17..bdbf3658 100644
--- a/examples/plugin/hide-internal-api/build.gradle.kts
+++ b/examples/plugin/hide-internal-api/build.gradle.kts
@@ -8,7 +8,7 @@ import java.net.URI
plugins {
kotlin("jvm") version "1.9.0"
- id("org.jetbrains.dokka") version "1.8.20"
+ id("org.jetbrains.dokka") version "1.9.0"
`maven-publish`
signing
}
diff --git a/examples/plugin/hide-internal-api/gradle.properties b/examples/plugin/hide-internal-api/gradle.properties
index bee9d785..40669a38 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.8.20
+dokkaVersion=1.9.0