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 25fda85
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions sqldelight-idea-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,8 @@ dependencies {

implementation projects.sqldelightCompiler

implementation libs.sqliteJdbc
implementation(libs.bugsnag) {
exclude group: "org.slf4j"
}
implementation(libs.sqliteJdbc)
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 25fda85

Please sign in to comment.