Skip to content

Feat: updated all library versions to latest to avoid vulnerability issues #397

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Sep 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
id 'me.champeau.gradle.jmh' version '0.4.5'
id 'nebula.optional-base' version '3.2.0'
id 'com.github.hierynomus.license' version '0.15.0'
id 'com.github.spotbugs' version "4.3.0"
id 'com.github.spotbugs' version "4.5.0"
}

allprojects {
Expand Down Expand Up @@ -110,6 +110,8 @@ subprojects {
}

dependencies {
compile group: 'commons-codec', name: 'commons-codec', version: commonCodecVersion

testCompile group: 'junit', name: 'junit', version: junitVersion
testCompile group: 'org.mockito', name: 'mockito-core', version: mockitoVersion
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: hamcrestVersion
Expand Down
13 changes: 7 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,20 @@ org.gradle.daemon = true
org.gradle.parallel = true

# Application Packages
gsonVersion = 2.6.1
guavaVersion = 19.0
gsonVersion = 2.8.6
guavaVersion = 22.0
hamcrestVersion = 1.3
jacksonVersion = 2.9.8
jsonVersion = 20160212
jacksonVersion = 2.11.2
jsonVersion = 20190722
jsonSimpleVersion = 1.1.1
logbackVersion = 1.1.5
logbackVersion = 1.2.3
slf4jVersion = 1.7.30

# Style Packages
findbugsAnnotationVersion = 3.0.1
findbugsJsrVersion = 3.0.2

# Test Packages
junitVersion = 4.12
junitVersion = 4.13
mockitoVersion = 1.10.19
commonCodecVersion = 1.15
4 changes: 2 additions & 2 deletions java-quickstart/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ dependencies {
compile project(':core-api')
compile project(':core-httpclient-impl')

compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.30'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
Expand Down