@@ -5,14 +5,14 @@ buildscript {
5
5
}
6
6
7
7
dependencies {
8
- classpath(" io.spring.gradle:dependency-management-plugin:1.0.7 .RELEASE" )
9
- classpath(" org.springframework.boot:spring-boot-gradle-plugin:2.1.4 .RELEASE" )
8
+ classpath(" io.spring.gradle:dependency-management-plugin:1.0.9 .RELEASE" )
9
+ classpath(" org.springframework.boot:spring-boot-gradle-plugin:2.1.13 .RELEASE" )
10
10
classpath " gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:2.0.0"
11
11
}
12
12
}
13
13
14
14
plugins {
15
- id " org.sonarqube" version " 2.7.1 "
15
+ id " org.sonarqube" version " 2.8 "
16
16
id ' jacoco'
17
17
}
18
18
@@ -23,11 +23,11 @@ buildScan {
23
23
}
24
24
25
25
ext. versions = [
26
- springBootVersion : ' 2.1.4 .RELEASE' ,
27
- springCloudVersion : ' 2.1.1 .RELEASE' ,
28
- springTxVersion : ' 5.1.6 .RELEASE' ,
26
+ springBootVersion : ' 2.1.13 .RELEASE' ,
27
+ springCloudVersion : ' 2.1.5 .RELEASE' ,
28
+ springTxVersion : ' 5.1.14 .RELEASE' ,
29
29
springFoxVersion : ' 2.9.2' ,
30
- hibernateVaildatorVersion : ' 6.0 .2.Final'
30
+ hibernateVaildatorVersion : ' 6.1 .2.Final'
31
31
]
32
32
33
33
ext. libraries = [
@@ -62,35 +62,35 @@ ext.libraries = [
62
62
},
63
63
spring_tx : dependencies. create(" org.springframework:spring-tx:" + ext. versions. springTxVersion),
64
64
jjwt : dependencies. create(" io.jsonwebtoken:jjwt:0.9.1" ),
65
- google_guava : dependencies. create(" com.google.guava:guava:27.1 -jre" ),
66
- google_gson : dependencies. create(" com.google.code.gson:gson:2.8.5 " ),
65
+ google_guava : dependencies. create(" com.google.guava:guava:28.2 -jre" ),
66
+ google_gson : dependencies. create(" com.google.code.gson:gson:2.8.6 " ),
67
67
h2 : dependencies. create(" com.h2database:h2:1.4.199" ),
68
68
javax_mail_api : dependencies. create(" javax.mail:javax.mail-api:1.6.2" ),
69
69
javax_mail_sun : dependencies. create(" com.sun.mail:javax.mail:1.6.2" ),
70
70
javax_xml_api : dependencies. create(" javax.xml.bind:jaxb-api:2.3.1" ),
71
71
javax_xml_impl : dependencies. create(" com.sun.xml.bind:jaxb-impl:2.3.1" ),
72
- snake_yaml : dependencies. create(" org.yaml:snakeyaml:1.24 " ),
72
+ snake_yaml : dependencies. create(" org.yaml:snakeyaml:1.26 " ),
73
73
74
74
springfox_swagger2 : dependencies. create(" io.springfox:springfox-swagger2:" + ext. versions. springFoxVersion),
75
75
springfox_swagger_ui : dependencies. create(" io.springfox:springfox-swagger-ui:" + ext. versions. springFoxVersion),
76
76
springfox_bean_validators : dependencies. create(" io.springfox:springfox-bean-validators:" + ext. versions. springFoxVersion),
77
- swagger_annotations : dependencies. create(" io.swagger:swagger-annotations:1.5.24 " ),
77
+ swagger_annotations : dependencies. create(" io.swagger:swagger-annotations:1.6.0 " ),
78
78
79
79
validation_api : dependencies. create(" javax.validation:validation-api:2.0.0.Final" ),
80
80
hibernate_validator : dependencies. create(" org.hibernate.validator:hibernate-validator:" + ext. versions. hibernateVaildatorVersion),
81
81
hibernate_validator_annotation_processor : dependencies. create(" org.hibernate.validator:hibernate-validator-annotation-processor:" + ext. versions. hibernateVaildatorVersion),
82
82
83
- junit : dependencies. create(" junit:junit:4.12 " ),
84
- powermock_junit : dependencies. create(" org.powermock:powermock-module-junit4:2.0.2 " ),
85
- powermock_api_easymock : dependencies. create(" org.powermock:powermock-api-easymock:2.0.2 " ),
86
- easymock : dependencies. create(" org.easymock:easymock:4.0. 2" ),
83
+ junit : dependencies. create(" junit:junit:4.13 " ),
84
+ powermock_junit : dependencies. create(" org.powermock:powermock-module-junit4:2.0.6 " ),
85
+ powermock_api_easymock : dependencies. create(" org.powermock:powermock-api-easymock:2.0.6 " ),
86
+ easymock : dependencies. create(" org.easymock:easymock:4.2" ),
87
87
88
88
spring_boot_starter_test : dependencies. create(" org.springframework.boot:spring-boot-starter-test:" + ext. versions. springBootVersion) {
89
89
exclude module : " spring-boot-starter-logging"
90
90
force = true
91
91
},
92
- spring_security_test : dependencies. create(" org.springframework.security:spring-security-test:5.2.1 .RELEASE" ),
93
- awaitility : dependencies. create(" org.awaitility:awaitility:3.1.6 " )
92
+ spring_security_test : dependencies. create(" org.springframework.security:spring-security-test:5.2.2 .RELEASE" ),
93
+ awaitility : dependencies. create(" org.awaitility:awaitility:4.0.2 " )
94
94
]
95
95
96
96
allprojects {
@@ -156,7 +156,7 @@ subprojects {
156
156
}
157
157
158
158
jacoco {
159
- toolVersion = " 0.8.3 "
159
+ toolVersion = " 0.8.5 "
160
160
}
161
161
jacocoTestReport {
162
162
reports {
0 commit comments