Skip to content

Commit 7b4e714

Browse files
authored
Feat: updated all library versions to latest to avoid vulnerability issues (#397)
1 parent 302eda6 commit 7b4e714

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
id 'me.champeau.gradle.jmh' version '0.4.5'
1818
id 'nebula.optional-base' version '3.2.0'
1919
id 'com.github.hierynomus.license' version '0.15.0'
20-
id 'com.github.spotbugs' version "4.3.0"
20+
id 'com.github.spotbugs' version "4.5.0"
2121
}
2222

2323
allprojects {
@@ -110,6 +110,8 @@ subprojects {
110110
}
111111

112112
dependencies {
113+
compile group: 'commons-codec', name: 'commons-codec', version: commonCodecVersion
114+
113115
testCompile group: 'junit', name: 'junit', version: junitVersion
114116
testCompile group: 'org.mockito', name: 'mockito-core', version: mockitoVersion
115117
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: hamcrestVersion

gradle.properties

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,20 @@ org.gradle.daemon = true
1010
org.gradle.parallel = true
1111

1212
# Application Packages
13-
gsonVersion = 2.6.1
14-
guavaVersion = 19.0
13+
gsonVersion = 2.8.6
14+
guavaVersion = 22.0
1515
hamcrestVersion = 1.3
16-
jacksonVersion = 2.9.8
17-
jsonVersion = 20160212
16+
jacksonVersion = 2.11.2
17+
jsonVersion = 20190722
1818
jsonSimpleVersion = 1.1.1
19-
logbackVersion = 1.1.5
19+
logbackVersion = 1.2.3
2020
slf4jVersion = 1.7.30
2121

2222
# Style Packages
2323
findbugsAnnotationVersion = 3.0.1
2424
findbugsJsrVersion = 3.0.2
2525

2626
# Test Packages
27-
junitVersion = 4.12
27+
junitVersion = 4.13
2828
mockitoVersion = 1.10.19
29+
commonCodecVersion = 1.15

java-quickstart/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ dependencies {
22
compile project(':core-api')
33
compile project(':core-httpclient-impl')
44

5-
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
6-
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'
5+
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
6+
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12'
77
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.30'
88
testCompile group: 'junit', name: 'junit', version: '4.12'
99
}

0 commit comments

Comments
 (0)