Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
fix(#1658): CVE-2017-18640 - High Severity Vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewdunsdon committed Dec 22, 2020
1 parent 497eb5a commit 1aa8705
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ dependencies {
compile "dk.brics.automaton:automaton:${AUTOMATON_VERSION}"
compile "org.apache.commons:commons-csv:${COMMONS_CSV_VERSION}"
implementation "com.github.javafaker:javafaker:${FAKER_VERSION}"
implementation ('org.yaml:snakeyaml') {
version {
strictly '1.26'
}
}

testCompile project(":common").sourceSets.test.output
testCompile "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
Expand Down
5 changes: 5 additions & 0 deletions profile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ dependencies {
compile "com.fasterxml.jackson.core:jackson-annotations:${JACKSON_VERSION}"
compile "com.fasterxml.jackson.core:jackson-databind:${JACKSON_VERSION}"
implementation "com.github.javafaker:javafaker:${FAKER_VERSION}"
implementation ('org.yaml:snakeyaml') {
version {
strictly '1.26'
}
}

testCompile project(":common").sourceSets.test.output
testCompile "org.junit.jupiter:junit-jupiter-api:${JUNIT_JUPITER_VERSION}"
Expand Down

0 comments on commit 1aa8705

Please sign in to comment.