Skip to content

Commit

Permalink
fix(deps): update dependency com.auth0:jwks-rsa to v0.22.1 (main) (#426)
Browse files Browse the repository at this point in the history
* fix(deps): update dependency com.auth0:jwks-rsa to v0.22.1

* Specify transitive guava dependency explicitly

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Davies Ashley <[email protected]>
  • Loading branch information
github-actions[bot] and ashdavies authored Jul 31, 2023
1 parent cff5622 commit 3a2d0de
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 21 deletions.
1 change: 1 addition & 0 deletions app-check/app-check-sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dependencies {

implementation(libs.auth.java.jwt)
implementation(libs.auth.jwks.rsa)
implementation(libs.google.guava.jre)

with(libs.ktor.client) {
implementation(auth)
Expand Down
2 changes: 0 additions & 2 deletions build-plugins/src/main/kotlin/io.ashdavies.cloud.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ compose {
kotlinCompilerPlugin.set("$composeCompiler")
}

configurations.create("invoker")

dependencies {
implementation(compose.foundation)
implementation(compose.runtime)
Expand Down
7 changes: 1 addition & 6 deletions cloud-firestore/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,11 @@ plugins {
id("io.ashdavies.kotlin")
}

configurations.all {
resolutionStrategy.capabilitiesResolution.withCapability("${libs.google.guava.listenablefuture.get()}") {
select(candidates.first { !it.id.displayName.contains("empty") })
}
}

kotlin {
jvmMain.dependencies {
implementation(dependencies.platform(libs.google.cloud.bom))
implementation(libs.google.cloud.firestore)
implementation(libs.google.firebase.admin)
implementation(libs.google.guava.jre)
}
}
8 changes: 1 addition & 7 deletions cloud-run/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ application {
mainClass.set("io.ashdavies.cloud.MainKt")
}

configurations.all {
resolutionStrategy.capabilitiesResolution.withCapability("${libs.google.guava.listenablefuture.get()}") {
select(candidates.first { !it.id.displayName.contains("empty") })
}
}

jib {
container.mainClass = application.mainClass.get()
}
Expand All @@ -40,8 +34,8 @@ kotlin {
implementation(dependencies.platform(cloud.bom))
implementation(cloud.firestore)
implementation(cloud.storage)

implementation(firebase.admin)
implementation(guava.jre)
}

with(libs.jetbrains.kotlinx) {
Expand Down
10 changes: 6 additions & 4 deletions events-aggregator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ plugins {
}

dependencies {
implementation(projects.cloudFirestore)
implementation(projects.localStorage)
implementation(projects.microYaml)
with(projects) {
implementation(cloudFirestore)
implementation(localStorage)
implementation(microYaml)
}

testImplementation(libs.ktor.client.core)
implementation(libs.google.guava.jre)
}
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ apollo-graphql-runtime = { module = "com.apollographql.apollo:apollo-runtime", v
app-cash-turbine = "app.cash.turbine:turbine:1.0.0"

auth-java-jwt = "com.auth0:java-jwt:4.4.0"
auth-jwks-rsa = "com.auth0:jwks-rsa:0.22.0"
auth-jwks-rsa = "com.auth0:jwks-rsa:0.22.1"

coil-compose = { module = "io.coil-kt:coil-compose", version.ref = "coil-kt" }
coil-core = { module = "io.coil-kt:coil", version.ref = "coil-kt" }
Expand All @@ -59,7 +59,7 @@ google-firebase-appcheck-debug = { module = "com.google.firebase:firebase-appche
google-firebase-appcheck-playintegrity = { module = "com.google.firebase:firebase-appcheck-playintegrity" }
google-firebase-common-ktx = { module = "com.google.firebase:firebase-common-ktx" }
google-firebase-auth-ktx = { module = "com.google.firebase:firebase-auth-ktx" }
google-guava-listenablefuture = "com.google.guava:listenablefuture:1.0"
google-guava-jre = "com.google.guava:guava:32.1.1-jre"
google-maps-android-compose = { module = "com.google.maps.android:maps-compose", version.ref = "google-maps-compose" }
google-maps-android-compose-widgets = { module = "com.google.maps.android:maps-compose-widgets", version.ref = "google-maps-compose" }

Expand Down

0 comments on commit 3a2d0de

Please sign in to comment.