From fb3679b9a0ecaf31b782a87636d960dfd6f7ffb7 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 5 May 2022 19:44:11 +0000 Subject: [PATCH 1/4] Update dependency org.jetbrains.dokka to v1.6.21 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f2168ca1946..0c74c359120 100644 --- a/gradle/libs.versions.toml +++ b/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" From 3fc78825e65098a0a8b3ebadfc386aaa33372c1a Mon Sep 17 00:00:00 2001 From: Alec Strong Date: Thu, 5 May 2022 16:25:48 -0400 Subject: [PATCH 2/4] Update PR.yml --- .github/workflows/PR.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PR.yml b/.github/workflows/PR.yml index 0e410f0284c..76a29a24b88 100644 --- a/.github/workflows/PR.yml +++ b/.github/workflows/PR.yml @@ -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' From 1e8b9a4b9418859a94f97c4123050f98b6b8874c Mon Sep 17 00:00:00 2001 From: Alec Strong Date: Thu, 5 May 2022 16:44:50 -0400 Subject: [PATCH 3/4] Update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7ab6853c29b..81ba3afefb7 100644 --- a/build.gradle +++ b/build.gradle @@ -9,6 +9,7 @@ buildscript { } 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 @@ -18,7 +19,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) } From e9cfa9e634d2f1ab3dc9e5b181a22930dd6989a9 Mon Sep 17 00:00:00 2001 From: Alec Strong Date: Thu, 5 May 2022 16:54:45 -0400 Subject: [PATCH 4/4] Update build.gradle --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index 81ba3afefb7..05b725550be 100644 --- a/build.gradle +++ b/build.gradle @@ -5,6 +5,11 @@ buildscript { strictly '4.4.1' } } + classpath("org.jetbrains.dokka:dokka-gradle-plugin") { + version { + strictly deps.versions.dokka.get() + } + } } }