mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 22:17:03 +05:30
fix(build): catch up on SentryExtension
changes
This commit is contained in:
parent
fa31e300e9
commit
5d0e56f115
2 changed files with 11 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright © 2023 Harsh Shandilya.
|
||||
* Copyright © 2023-2024 Harsh Shandilya.
|
||||
* Use of this source code is governed by an MIT-style
|
||||
* license that can be found in the LICENSE file or at
|
||||
* https://opensource.org/licenses/MIT.
|
||||
|
@ -53,6 +53,16 @@ class SentryPlugin : Plugin<Project> {
|
|||
sentryVersion.set(libs.versions.sentry.sdk)
|
||||
}
|
||||
includeDependenciesReport.set(true)
|
||||
includeSourceContext.set(true)
|
||||
autoUploadSourceContext.set(true)
|
||||
additionalSourceDirsForSourceContext.set(emptySet())
|
||||
debug.set(false)
|
||||
org.set("claw")
|
||||
projectName.set("compose-lobsters")
|
||||
authToken.set(project.providers.environmentVariable("SENTRY_AUTH_TOKEN"))
|
||||
url.set(null)
|
||||
telemetry.set(false)
|
||||
telemetryDsn.set(null)
|
||||
}
|
||||
with(project.dependencies) { addProvider("implementation", platform(libs.sentry.bom)) }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue