Skip to content

Commit

Permalink
Bump com.google.guava:guava from 32.0.1-jre to 32.1.1-jre (#249)
Browse files Browse the repository at this point in the history
* Bump com.google.guava:guava from 32.0.1-jre to 32.1.1-jre

Bumps [com.google.guava:guava](https://github.com/google/guava) from 32.0.1-jre to 32.1.1-jre.
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)

---
updated-dependencies:
- dependency-name: com.google.guava:guava
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Apply workaround according to Guava release notes

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Valery Yatsynovich <[email protected]>
  • Loading branch information
dependabot[bot] and valfirst authored Jul 25, 2023
1 parent e0e45c8 commit 4f9f965
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,22 @@ subprojects {
littleProxyVersion = '2.0.18'
slf4jVersion = '2.0.7'
swaggerVersion = '2.2.15'
guavaVersion = '32.0.1-jre'
guavaVersion = '32.1.1-jre'
seleniumVersion = '4.10.0'
hamcrestVersion = '2.2'
}

// Workaround for Guava: https://github.com/google/guava/releases/tag/v32.1.0
sourceSets.all {
configurations.getByName(runtimeClasspathConfigurationName) {
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
}
configurations.getByName(compileClasspathConfigurationName) {
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
}
}
// End of workaround for Guava

repositories {
mavenCentral()
jcenter()
Expand Down

0 comments on commit 4f9f965

Please sign in to comment.