aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-10-16 18:36:42 +0200
committerGitHub <noreply@github.com>2023-10-16 18:36:42 +0200
commit9bbcc21affe7a2b787c5a8cfb64f416cf226a0fd (patch)
treeff33ae7a18b2abab6faa65a0233f6a29b166bf24 /examples
parent6a55173f0e2c66488aa264d02363db41fb0e1213 (diff)
downloaddokka-9bbcc21affe7a2b787c5a8cfb64f416cf226a0fd.tar.gz
dokka-9bbcc21affe7a2b787c5a8cfb64f416cf226a0fd.tar.bz2
dokka-9bbcc21affe7a2b787c5a8cfb64f416cf226a0fd.zip
Update Dokka's references to 1.9.10 (#3210)
Diffstat (limited to 'examples')
-rw-r--r--examples/gradle/dokka-customFormat-example/build.gradle.kts6
-rw-r--r--examples/gradle/dokka-gradle-example/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts10
-rw-r--r--examples/gradle/dokka-library-publishing-example/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-multimodule-example/gradle.properties4
-rw-r--r--examples/gradle/dokka-multiplatform-example/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts6
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts2
-rw-r--r--examples/maven/pom.xml4
-rw-r--r--examples/plugin/hide-internal-api/README.md4
-rw-r--r--examples/plugin/hide-internal-api/build.gradle.kts4
-rw-r--r--examples/plugin/hide-internal-api/gradle.properties2
12 files changed, 27 insertions, 27 deletions
diff --git a/examples/gradle/dokka-customFormat-example/build.gradle.kts b/examples/gradle/dokka-customFormat-example/build.gradle.kts
index 280b8edb..eb647a7e 100644
--- a/examples/gradle/dokka-customFormat-example/build.gradle.kts
+++ b/examples/gradle/dokka-customFormat-example/build.gradle.kts
@@ -7,13 +7,13 @@ import org.jetbrains.dokka.base.DokkaBase
import org.jetbrains.dokka.base.DokkaBaseConfiguration
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"
}
buildscript {
dependencies {
- classpath("org.jetbrains.dokka:dokka-base:1.9.0")
+ classpath("org.jetbrains.dokka:dokka-base:1.9.10")
}
}
diff --git a/examples/gradle/dokka-gradle-example/build.gradle.kts b/examples/gradle/dokka-gradle-example/build.gradle.kts
index 0d09f96f..330e0104 100644
--- a/examples/gradle/dokka-gradle-example/build.gradle.kts
+++ b/examples/gradle/dokka-gradle-example/build.gradle.kts
@@ -6,8 +6,8 @@ import org.jetbrains.dokka.gradle.DokkaTask
import java.net.URL
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"
}
repositories {
diff --git a/examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts b/examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts
index f9711883..83673de7 100644
--- a/examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts
+++ b/examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts
@@ -3,8 +3,8 @@
*/
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"
}
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.9.0")
+ dokkaPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.10")
// Will apply the plugin only to the `:dokkaHtml` task
- //dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")
+ //dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.10")
// Will apply the plugin only to the `:dokkaGfm` task
- //dokkaGfmPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")
+ //dokkaGfmPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.10")
}
diff --git a/examples/gradle/dokka-library-publishing-example/build.gradle.kts b/examples/gradle/dokka-library-publishing-example/build.gradle.kts
index 003aa04f..ac6678e3 100644
--- a/examples/gradle/dokka-library-publishing-example/build.gradle.kts
+++ b/examples/gradle/dokka-library-publishing-example/build.gradle.kts
@@ -3,8 +3,8 @@
*/
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"
`java-library`
`maven-publish`
}
diff --git a/examples/gradle/dokka-multimodule-example/gradle.properties b/examples/gradle/dokka-multimodule-example/gradle.properties
index fda31413..18c74db6 100644
--- a/examples/gradle/dokka-multimodule-example/gradle.properties
+++ b/examples/gradle/dokka-multimodule-example/gradle.properties
@@ -2,5 +2,5 @@
# Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
#
-kotlinVersion=1.9.0
-dokkaVersion=1.9.0
+kotlinVersion=1.9.10
+dokkaVersion=1.9.10
diff --git a/examples/gradle/dokka-multiplatform-example/build.gradle.kts b/examples/gradle/dokka-multiplatform-example/build.gradle.kts
index 56c03564..df4ea014 100644
--- a/examples/gradle/dokka-multiplatform-example/build.gradle.kts
+++ b/examples/gradle/dokka-multiplatform-example/build.gradle.kts
@@ -8,8 +8,8 @@ import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.dokka.Platform
plugins {
- kotlin("multiplatform") version "1.9.0"
- id("org.jetbrains.dokka") version "1.9.0"
+ kotlin("multiplatform") version "1.9.10"
+ id("org.jetbrains.dokka") version "1.9.10"
}
repositories {
diff --git a/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
index 3984caa5..88a78e37 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
@@ -3,8 +3,8 @@
*/
plugins {
- kotlin("jvm") version "1.9.0"
- id("org.jetbrains.dokka") version "1.9.0" apply false
+ kotlin("jvm") version "1.9.10"
+ id("org.jetbrains.dokka") version "1.9.10" 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.9.0")
+ dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.9.10")
}
}
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 4bcee160..9fc84cba 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.9.0")
+ classpath("org.jetbrains.dokka:versioning-plugin:1.9.10")
}
repositories {
diff --git a/examples/maven/pom.xml b/examples/maven/pom.xml
index 811e4902..11a6428b 100644
--- a/examples/maven/pom.xml
+++ b/examples/maven/pom.xml
@@ -12,8 +12,8 @@
<artifactId>kotlin-maven-example</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
- <kotlin.version>1.9.0</kotlin.version>
- <dokka.version>1.9.0</dokka.version>
+ <kotlin.version>1.9.10</kotlin.version>
+ <dokka.version>1.9.10</dokka.version>
</properties>
<dependencies>
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