diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-12-19 11:40:28 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-12-19 11:40:28 +0530 |
commit | 5c35acdfbcffdacb2e35b51dcbd8e279db44c5ae (patch) | |
tree | 3418dd6d2b1a8b0d4f752b404f00de1695b2ce93 /build-logic | |
parent | e688a6e55813c67bcbb6476c842181fbf2903b53 (diff) |
fix: disable Sentry dependency report
Incompatible with configuration cache
Diffstat (limited to 'build-logic')
-rw-r--r-- | build-logic/src/main/kotlin/app/passwordstore/gradle/SentryPlugin.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build-logic/src/main/kotlin/app/passwordstore/gradle/SentryPlugin.kt b/build-logic/src/main/kotlin/app/passwordstore/gradle/SentryPlugin.kt index c377ee0f..4ac5a7f6 100644 --- a/build-logic/src/main/kotlin/app/passwordstore/gradle/SentryPlugin.kt +++ b/build-logic/src/main/kotlin/app/passwordstore/gradle/SentryPlugin.kt @@ -33,6 +33,7 @@ class SentryPlugin : Plugin<Project> { ignoredFlavors.set(setOf(ProductFlavors.FREE)) tracingInstrumentation { enabled.set(false) } autoInstallation.enabled.set(false) + includeDependenciesReport.set(false) } } } |