-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from wiremock/fix-vulns
Fix / ignore vulnerabilities
- Loading branch information
Showing
4 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. | ||
version: v1.25.0 | ||
# ignores vulnerabilities until expiry date; change duration by modifying expiry date | ||
ignore: | ||
SNYK-JAVA-ORGJETBRAINSKOTLIN-2393744: | ||
- '*': | ||
reason: No fix available | ||
expires: 2025-09-13T11:22:43.997Z | ||
created: 2024-09-13T11:22:43.999Z | ||
'snyk:lic:maven:junit:junit:EPL-1.0': | ||
- '*': | ||
reason: Not relevant, we do not repackage junit | ||
expires: 2034-09-13T12:29:48.476Z | ||
created: 2024-09-13T12:29:48.481Z | ||
patch: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ plugins { | |
id 'eclipse' | ||
id 'project-report' | ||
id 'com.diffplug.spotless' version '6.21.0' | ||
id 'org.wiremock.tools.gradle.wiremock-extension-convention' version '0.2.0' | ||
id 'org.wiremock.tools.gradle.wiremock-extension-convention' version '0.3.0' | ||
} | ||
|
||
repositories { | ||
|
@@ -67,6 +67,9 @@ dependencies { | |
implementation('com.fasterxml.jackson.core:jackson-core:2.15.0') { | ||
because 'version 2.14.2 brought in transitively by com.auth0:[email protected] has CWE-400' | ||
} | ||
implementation('org.apache.commons:commons-compress:1.26.0') { | ||
because 'version 1.24.0 brought in transitively by org.wiremock:wiremock:3.9.1 has CVE-2024-25710' | ||
} | ||
} | ||
} | ||
|
||
|