Skip to content

Commit

Permalink
exclude CVE-2023-35116 from dependency analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
paulchen committed Jun 19, 2023
1 parent 2ff67e1 commit 1cfbf9d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ configure<DependencyCheckExtension> {
format = ReportGenerator.Format.ALL.toString()
analyzers.assemblyEnabled = false
failBuildOnCVSS = 7f
suppressionFile = file("$rootDir/cve-suppressions.xml").toString()
}

repositories {
Expand Down
7 changes: 7 additions & 0 deletions cve-suppressions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.2.xsd">
<suppress>
<notes>not a security issue</notes>
<cve>CVE-2023-35116</cve>
</suppress>
</suppressions>

0 comments on commit 1cfbf9d

Please sign in to comment.