Skip to content

Commit

Permalink
Fix guava version for checkstyle (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkondratowicz authored Dec 19, 2017
1 parent 045f901 commit 7c753e5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator'
compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-feign'
compile group: 'com.netflix.feign', name: 'feign-jackson', version: '8.18.0'
compile group: 'com.google.guava', name: 'guava', version: '23.0'
compile group: 'com.google.guava', name: 'guava', version: '23.2-jre'
compile group: 'com.warrenstrange', name: 'googleauth', version: '1.1.2'

testCompile group: 'junit', name: 'junit', version: '4.12'
Expand All @@ -134,6 +134,9 @@ dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
dependencies {
dependency group: 'com.google.guava', name: 'guava', version: '23.2-jre'
}
}

bootRepackage {
Expand Down

0 comments on commit 7c753e5

Please sign in to comment.