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
Uses require as:
> Implies that the selected version cannot be lower than what require accepts
but could be higher through conflict resolution, even if higher has an
exclusive higher bound.
>
> https://docs.gradle.org/current/userguide/rich_versions.html
  • Loading branch information
matthewdunsdon committed Jan 5, 2021
1 parent 1aa8705 commit 1bc203d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
implementation "com.github.javafaker:javafaker:${FAKER_VERSION}"
implementation ('org.yaml:snakeyaml') {
version {
strictly '1.26'
require '1.26'
}
}

Expand Down
2 changes: 1 addition & 1 deletion profile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
implementation "com.github.javafaker:javafaker:${FAKER_VERSION}"
implementation ('org.yaml:snakeyaml') {
version {
strictly '1.26'
require '1.26'
}
}

Expand Down

0 comments on commit 1bc203d

Please sign in to comment.