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

Commit

Permalink
Merge pull request #1715 from matthewdunsdon/CVE-2017-18640
Browse files Browse the repository at this point in the history
fix(#1658): CVE-2017-18640 - High Severity Vulnerability
  • Loading branch information
willsalt-sl authored Jan 5, 2021
2 parents 735bb0b + dbba209 commit bf492a5
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 {
require '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 {
require '1.26'
}
}

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

0 comments on commit bf492a5

Please sign in to comment.