Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ subprojects {
mavenLocal()
}

// Guava 32.1+ publishes Gradle Module Metadata with two variants
// (android / standard-jvm) distinguished by the org.gradle.jvm.environment
// attribute. Gradle 6.x doesn't resolve this automatically — tell it to
// prefer the standard-jvm (JRE) variant.
configurations.all {
attributes.attribute(
Attribute.of('org.gradle.jvm.environment', String),
'standard-jvm'
)
}

test {
useJUnitPlatform()
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ commonsLangVersion=2.6
commonsLang3Version=3.20.0
dozerVersion=5.5.1
ehcacheVersion=3.10.8
guavaVersion=32.0.0-jre
guavaVersion=32.1.3-jre
hibernateVersion=5.6.15.Final
httpclientVersion=3.1
httpcomponentsVersion=4.5.14
Expand Down
Loading