Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency org.jetbrains.dokka to v1.6.21 #3189

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/PR.yml
Expand Up @@ -45,7 +45,7 @@ jobs:
./gradlew build -x :sqldelight-idea-plugin:build -x :sqldelight-gradle-plugin:test --stacktrace
- name: Run gradle plugin tests
if: matrix.os == 'ubuntu-18.04' && matrix.job == 'gradle-plugin-tests'
run: ./gradlew :sqldelight-gradle-plugin:test
run: ./gradlew :sqldelight-gradle-plugin:test --stacktrace

- name: Run the IntelliJ plugin
if: matrix.os == 'ubuntu-18.04' && matrix.job == 'instrumentation'
Expand Down
7 changes: 6 additions & 1 deletion build.gradle
Expand Up @@ -5,10 +5,16 @@ buildscript {
strictly '4.4.1'
}
}
classpath("org.jetbrains.dokka:dokka-gradle-plugin") {
version {
strictly deps.versions.dokka.get()
}
}
}
}

plugins {
alias(deps.plugins.dokka) apply false
alias(deps.plugins.grammarKitComposer) apply false
alias(deps.plugins.kotlin.multiplatform) apply false
alias(deps.plugins.kotlin.jvm) apply false
Expand All @@ -18,7 +24,6 @@ plugins {
alias(deps.plugins.android.application) apply false
alias(deps.plugins.android.library) apply false
alias(deps.plugins.publish) apply false
alias(deps.plugins.dokka) apply false
alias(deps.plugins.spotless)
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
@@ -1,6 +1,6 @@
[versions]
kotlin = "1.6.21"
dokka = "1.6.10"
dokka = "1.6.21"
kotlinCoroutines = "1.6.1"
idea = "211.7628.21" # Android Studio Bumblebee (see https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html)
androidxSqlite = "2.2.0"
Expand Down