Use an Object with fields instead of a Map for dependency versions

This commit is contained in:
jmp 2020-12-31 22:09:31 -08:00 committed by Alexander Söderberg
parent f1e467038c
commit b848070d57
17 changed files with 59 additions and 55 deletions

View file

@ -1,5 +1,5 @@
dependencies {
api(project(":cloud-services"))
testImplementation("org.openjdk.jmh", "jmh-core", versions["jhm"])
testImplementation("org.openjdk.jmh", "jmh-generator-annprocess", versions["jhm"])
testImplementation("org.openjdk.jmh", "jmh-core", Versions.jhm)
testImplementation("org.openjdk.jmh", "jmh-generator-annprocess", Versions.jhm)
}