Skip to content

Commit

Permalink
fix: guava version
Browse files Browse the repository at this point in the history
  • Loading branch information
krizzu committed May 13, 2024
1 parent 93f50e9 commit 29e2b6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion firebase-auth-provider/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ plugins {
}

dependencies {
implementation(libs.firebase.admin)
implementation(libs.firebase.admin) {
exclude("com.google.guava")
}
implementation(libs.firebase.admin.guavaWorkaround)
implementation(libs.ktor.auth)
implementation(libs.logger)
}
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ firebase = "9.2.0"
[libraries]
ktor-auth = { module = "io.ktor:ktor-server-auth", version.ref = "ktor" }
firebase-admin = { module = "com.google.firebase:firebase-admin", version.ref = "firebase" }
firebase-admin-guavaWorkaround = { module = "com.google.guava:guava", version = "33.2.0-jre" }
logger = { module = "org.slf4j:slf4j-api", version = "2.0.7" }

# sample server deps
Expand Down

0 comments on commit 29e2b6b

Please sign in to comment.