Skip to content

Commit 601cd4c

Browse files
Update plugin dokka to v2.1.0 (#713)
* Update plugin dokka to v2.1.0 * Track Dokka changes --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jake Wharton <jw@squareup.com>
1 parent e6ff4df commit 601cd4c

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
java-version-file: .github/workflows/.java-version
2222
- uses: gradle/actions/setup-gradle@v5
2323

24-
- run: ./gradlew build dokkaHtmlMultiModule
24+
- run: ./gradlew build dokkaGenerate
2525

2626
- run: ./gradlew publish
2727
if: ${{ github.ref == 'refs/heads/master' && github.repository == 'sqldelight/sql-psi' }}

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838

39-
- run: ./gradlew dokkaHtmlMultiModule
39+
- run: ./gradlew dokkaGenerate
4040

4141
- name: Deploy docs to website
4242
uses: JamesIves/github-pages-deploy-action@releases/v3

build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ plugins {
77
alias(libs.plugins.dokka)
88
}
99

10+
dependencies {
11+
dokka(projects.core)
12+
dokka(projects.environment)
13+
}
14+
1015
spotless {
1116
kotlin {
1217
target "**/*.kt"

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ kotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
2525
grammarKitComposer = { id = "app.cash.grammarkit-composer", version = "0.2.0" }
2626
spotless = { id = "com.diffplug.spotless", version = "8.0.0" }
2727
mavenPublish = { id = "com.vanniktech.maven.publish", version = "0.34.0" }
28-
dokka = { id = "org.jetbrains.dokka", version = "2.0.0" }
28+
dokka = { id = "org.jetbrains.dokka", version = "2.1.0" }
2929
intellij = { id = "org.jetbrains.intellij.platform", version = "2.10.0" }

0 commit comments

Comments
 (0)