Skip to content

Commit ff75c00

Browse files
committed
Update Dokka's references to 1.9.0
1 parent 4096e7d commit ff75c00

File tree

22 files changed

+52
-52
lines changed

22 files changed

+52
-52
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Bug reports, feature requests and questions are welcome. Submit issues [here](ht
2323

2424
## Submitting PRs
2525

26-
Dokka has extensive [Developer Guides](https://kotlin.github.io/dokka/1.8.20/developer_guide/introduction/) documentation
27-
which goes over the development [Workflow](https://kotlin.github.io/dokka/1.8.20/developer_guide/workflow/) and
28-
[Dokka's architecture](https://kotlin.github.io/dokka/1.8.20/developer_guide/architecture/architecture_overview/),
26+
Dokka has extensive [Developer Guides](https://kotlin.github.io/dokka/1.9.0/developer_guide/introduction/) documentation
27+
which goes over the development [Workflow](https://kotlin.github.io/dokka/1.9.0/developer_guide/workflow/) and
28+
[Dokka's architecture](https://kotlin.github.io/dokka/1.9.0/developer_guide/architecture/architecture_overview/),
2929
which can help you understand how to achieve what you want and where to look.
3030

3131
All development (both new features and bugfixes) takes place in the `master` branch, it contains sources for the next
@@ -61,18 +61,18 @@ Unit tests which are run as part of `build` should not take much time, but you c
6161
### Use/test locally built Dokka
6262

6363
Below you will find a bare-bones instruction on how to use and test locally built Dokka. For more details and examples,
64-
visit [Workflow](https://kotlin.github.io/dokka/1.8.20/developer_guide/workflow/) topic.
64+
visit [Workflow](https://kotlin.github.io/dokka/1.9.0/developer_guide/workflow/) topic.
6565

6666
1. Change `dokka_version` in `gradle.properties` to something that you will use later on as the dependency version.
67-
For instance, you can set it to something like `1.8.20-my-fix-SNAPSHOT`.
67+
For instance, you can set it to something like `1.9.0-my-fix-SNAPSHOT`.
6868
2. Publish it to Maven Local (`./gradlew publishToMavenLocal`)
6969
3. In the project for which you want to generate documentation add Maven Local as a buildscript/dependency
7070
repository (`mavenLocal()`)
7171
4. Update your Dokka dependency to the version you've just published:
7272

7373
```kotlin
7474
plugins {
75-
id("org.jetbrains.dokka") version "1.8.20-my-fix-SNAPSHOT"
75+
id("org.jetbrains.dokka") version "1.9.0-my-fix-SNAPSHOT"
7676
}
7777
```
7878

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Apply the Gradle plugin for Dokka in the root build script of your project:
4242

4343
```kotlin
4444
plugins {
45-
id("org.jetbrains.dokka") version "1.8.20"
45+
id("org.jetbrains.dokka") version "1.9.0"
4646
}
4747
```
4848

@@ -64,7 +64,7 @@ Apply Gradle plugin for Dokka in the root project:
6464

6565
```groovy
6666
plugins {
67-
id 'org.jetbrains.dokka' version '1.8.20'
67+
id 'org.jetbrains.dokka' version '1.9.0'
6868
}
6969
```
7070

@@ -98,7 +98,7 @@ Add the Dokka Maven plugin to the `plugins` section of your POM file:
9898
<plugin>
9999
<groupId>org.jetbrains.dokka</groupId>
100100
<artifactId>dokka-maven-plugin</artifactId>
101-
<version>1.8.20</version>
101+
<version>1.9.0</version>
102102
<executions>
103103
<execution>
104104
<phase>pre-site</phase>
@@ -137,7 +137,7 @@ Android platform:
137137

138138
```kotlin
139139
dependencies {
140-
dokkaPlugin("org.jetbrains.dokka:android-documentation-plugin:1.8.20")
140+
dokkaPlugin("org.jetbrains.dokka:android-documentation-plugin:1.9.0")
141141
}
142142
```
143143

@@ -148,7 +148,7 @@ dependencies {
148148

149149
```groovy
150150
dependencies {
151-
dokkaPlugin 'org.jetbrains.dokka:android-documentation-plugin:1.8.20'
151+
dokkaPlugin 'org.jetbrains.dokka:android-documentation-plugin:1.9.0'
152152
}
153153
```
154154

@@ -167,7 +167,7 @@ dependencies {
167167
<plugin>
168168
<groupId>org.jetbrains.dokka</groupId>
169169
<artifactId>android-documentation-plugin</artifactId>
170-
<version>1.8.20</version>
170+
<version>1.9.0</version>
171171
</plugin>
172172
</dokkaPlugins>
173173
</configuration>
@@ -214,7 +214,7 @@ implement plugins for missing or very specific features that are not provided ou
214214
Learn more about Dokka plugins and their configuration in [Dokka plugins](https://kotlinlang.org/docs/dokka-plugins.html).
215215

216216
If you want to learn how to develop Dokka plugins, see
217-
[Developer guides](https://kotlin.github.io/dokka/1.8.20/developer_guide/introduction/).
217+
[Developer guides](https://kotlin.github.io/dokka/1.9.0/developer_guide/introduction/).
218218

219219
## Community
220220

docs-developer/src/doc/docs/developer_guide/workflow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Having built Dokka locally, you can publish it to `mavenLocal()`. This will allo
4242
project as well as debug code remotely.
4343

4444
1. Change `dokka_version` in `gradle.properties` to something that you will use later on as the dependency version.
45-
For instance, you can set it to something like `1.8.20-my-fix-SNAPSHOT`. This version will be propagated to plugins
45+
For instance, you can set it to something like `1.9.0-my-fix-SNAPSHOT`. This version will be propagated to plugins
4646
that reside inside Dokka's project (such as `mathjax`, `kotlin-as-java`, etc).
4747
2. Publish it to Maven Local (`./gradlew publishToMavenLocal`). Corresponding artifacts should appear in `~/.m2`
4848
3. In the project you want to generate documentation for or debug on, add maven local as a plugin/dependency
@@ -55,7 +55,7 @@ repositories {
5555
4. Update your Dokka dependency to the version you've just published:
5656
```kotlin
5757
plugins {
58-
id("org.jetbrains.dokka") version "1.8.20-my-fix-SNAPSHOT"
58+
id("org.jetbrains.dokka") version "1.9.0-my-fix-SNAPSHOT"
5959
}
6060
```
6161

examples/gradle/dokka-customFormat-example/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import org.jetbrains.dokka.base.DokkaBaseConfiguration
44

55
plugins {
66
kotlin("jvm") version "1.9.0"
7-
id("org.jetbrains.dokka") version "1.8.20"
7+
id("org.jetbrains.dokka") version "1.9.0"
88
}
99

1010
buildscript {
1111
dependencies {
12-
classpath("org.jetbrains.dokka:dokka-base:1.8.20")
12+
classpath("org.jetbrains.dokka:dokka-base:1.9.0")
1313
}
1414
}
1515

examples/gradle/dokka-gradle-example/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import java.net.URL
33

44
plugins {
55
kotlin("jvm") version "1.9.0"
6-
id("org.jetbrains.dokka") version "1.8.20"
6+
id("org.jetbrains.dokka") version "1.9.0"
77
}
88

99
repositories {
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("jvm") version "1.9.0"
3-
id("org.jetbrains.dokka") version "1.8.20"
3+
id("org.jetbrains.dokka") version "1.9.0"
44
}
55

66
repositories {
@@ -11,11 +11,11 @@ dependencies {
1111
testImplementation(kotlin("test-junit"))
1212

1313
// Will apply the plugin to all Dokka tasks
14-
dokkaPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
14+
dokkaPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")
1515

1616
// Will apply the plugin only to the `:dokkaHtml` task
17-
//dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
17+
//dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")
1818

1919
// Will apply the plugin only to the `:dokkaGfm` task
20-
//dokkaGfmPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
20+
//dokkaGfmPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")
2121
}

examples/gradle/dokka-library-publishing-example/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("jvm") version "1.9.0"
3-
id("org.jetbrains.dokka") version "1.8.20"
3+
id("org.jetbrains.dokka") version "1.9.0"
44
`java-library`
55
`maven-publish`
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
kotlinVersion=1.9.0
2-
dokkaVersion=1.8.20
2+
dokkaVersion=1.9.0

examples/gradle/dokka-multiplatform-example/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import org.jetbrains.dokka.Platform
55

66
plugins {
77
kotlin("multiplatform") version "1.9.0"
8-
id("org.jetbrains.dokka") version "1.8.20"
8+
id("org.jetbrains.dokka") version "1.9.0"
99
}
1010

1111
repositories {

examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("jvm") version "1.9.0"
3-
id("org.jetbrains.dokka") version "1.8.20" apply false
3+
id("org.jetbrains.dokka") version "1.9.0" apply false
44
}
55

66
// The versioning plugin must be applied in all submodules
@@ -14,6 +14,6 @@ subprojects {
1414
}
1515
val dokkaPlugin by configurations
1616
dependencies {
17-
dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.8.20")
17+
dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.9.0")
1818
}
1919
}

0 commit comments

Comments
 (0)