1
1
plugins {
2
- id " com.github.spotbugs" version " 1.6.4 "
3
- id " org.springframework.boot" version " 2.0.5 .RELEASE"
2
+ id " com.github.spotbugs" version " 1.6.5 "
3
+ id " org.springframework.boot" version " 2.1.0 .RELEASE"
4
4
id " io.spring.dependency-management" version " 1.0.6.RELEASE"
5
5
id " com.palantir.docker" version " 0.20.1"
6
- id " org.owasp.dependencycheck" version " 3.3.2 "
6
+ id " org.owasp.dependencycheck" version " 3.3.4 "
7
7
id " org.sonarqube" version " 2.6.2"
8
8
id " com.gorylenko.gradle-git-properties" version " 1.5.2"
9
9
}
@@ -25,19 +25,19 @@ compileJava.options.encoding = "UTF-8"
25
25
26
26
repositories {
27
27
mavenCentral()
28
+ maven { url " https://repo.spring.io/milestone" }
28
29
}
29
30
30
31
spotbugs {
31
- toolVersion = ' 3.1.7 '
32
+ toolVersion = ' 3.1.8 '
32
33
}
33
34
34
35
jacoco {
35
36
toolVersion = " 0.8.2"
36
37
}
37
38
38
39
checkstyle {
39
- configDir rootProject. file(' config/checkstyle' )
40
- toolVersion ' 8.1'
40
+ toolVersion ' 8.14'
41
41
}
42
42
43
43
springBoot {
@@ -118,22 +118,21 @@ docker {
118
118
}
119
119
120
120
dependencies {
121
- def springBootVersion = ' 2.0.5 .RELEASE'
121
+ def springBootVersion = ' 2.1.0 .RELEASE'
122
122
implementation group : ' org.springframework.boot' , name : ' spring-boot-starter-web' , version : springBootVersion
123
123
implementation group : ' org.springframework.boot' , name : ' spring-boot-starter-actuator' , version : springBootVersion
124
- implementation group : ' org.springframework.cloud ' , name : ' spring-cloud-starter-sleuth ' , version : ' 2.0.1.RELEASE '
125
- implementation group : ' com.github.spotbugs ' , name : ' spotbugs-annotations ' , version : ' 3 .1.7 '
126
- implementation group : ' io.micrometer ' , name : ' micrometer-registry-new-relic ' , version : ' 1.0.6 '
127
-
124
+ // Update this to release version and remove milestone repo
125
+ implementation group : ' org.springframework.cloud ' , name : ' spring-cloud-starter-sleuth ' , version : ' 2 .1.0.M1 '
126
+ implementation group : ' com.github.spotbugs ' , name : ' spotbugs-annotations ' , version : ' 3.1.8 '
127
+ implementation group : ' io.micrometer ' , name : ' micrometer-registry-new-relic ' , version : ' 1.1.0 '
128
128
runtime group : ' org.postgresql' , name : ' postgresql' , version : ' 42.2.5'
129
129
130
- testCompile group : ' org.junit.jupiter' , name : ' junit-jupiter-api' , version : ' 5.3.1'
131
- testRuntime group : ' org.junit.jupiter' , name : ' junit-jupiter-engine' , version : ' 5.3.1'
132
- testRuntime group : ' com.h2database' , name : ' h2' , version : ' 1.4.197'
133
- testImplementation group : ' org.mockito' , name : ' mockito-core' , version : ' 2.22.0'
134
- testImplementation group : ' org.assertj' , name : ' assertj-core' , version : ' 3.11.1'
135
130
testImplementation group : ' org.springframework.boot' , name : ' spring-boot-starter-test' , version : springBootVersion
136
-
131
+ testImplementation group : ' org.junit.jupiter' , name : ' junit-jupiter-api' , version : ' 5.3.1'
132
+ testImplementation group : ' org.assertj' , name : ' assertj-core' , version : ' 3.11.1'
133
+ testImplementation group : ' org.mockito' , name : ' mockito-core' , version : ' 2.23.0'
137
134
// Remove once Mockito 3.x gets released with Junit 5 support
138
- testImplementation group : ' org.mockito' , name : ' mockito-junit-jupiter' , version : ' 2.22.0'
135
+ testImplementation group : ' org.mockito' , name : ' mockito-junit-jupiter' , version : ' 2.23.0'
136
+ testRuntime group : ' org.junit.jupiter' , name : ' junit-jupiter-engine' , version : ' 5.3.1'
137
+ testRuntime group : ' com.h2database' , name : ' h2' , version : ' 1.4.197'
139
138
}
0 commit comments