Skip to content

Commit

Permalink
Exclude listenablefuture from google-cloud-monitoring
Browse files Browse the repository at this point in the history
The dependency causes issues resolving dependencies with Gradle. Excluding it is fine because the necessary classes are available in guava itself now.

Closes gh-4010
  • Loading branch information
shakuzen committed Aug 7, 2023
1 parent 46f3809 commit 869366e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion implementations/micrometer-registry-stackdriver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ dependencies {

api platform('com.google.cloud:libraries-bom:latest.release')

api 'com.google.cloud:google-cloud-monitoring'
api('com.google.cloud:google-cloud-monitoring') {
// see gh-4010
exclude group: 'com.google.guava', module: 'listenablefuture'
}
api 'com.google.auth:google-auth-library-oauth2-http'
implementation 'org.slf4j:slf4j-api'
compileOnly 'ch.qos.logback:logback-classic'
Expand Down

0 comments on commit 869366e

Please sign in to comment.