Skip to content

Commit

Permalink
Fix error handler crash
Browse files Browse the repository at this point in the history
#4983 will take some time, so let's fix it separately
  • Loading branch information
aperfilyev committed Jan 28, 2024
1 parent e353383 commit 1aa553e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions sqldelight-idea-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,7 @@ dependencies {
implementation projects.sqldelightCompiler

implementation libs.sqliteJdbc
implementation(libs.bugsnag) {
exclude group: "org.slf4j"
}
implementation libs.bugsnag
implementation libs.picnic
implementation libs.moshi

Expand All @@ -94,6 +92,10 @@ dependencies {
testImplementation projects.dialects.sqlite318
}

configurations.named("implementation") {
exclude group: "org.slf4j"
}

def bugsnagKey = tasks.register('bugsnagKey', BugsnagKey)
sourceSets.main {
kotlin.srcDir(bugsnagKey)
Expand Down

0 comments on commit 1aa553e

Please sign in to comment.