Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions config/security-suppressions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.1.xsd">
<suppress>
<notes><![CDATA[
Suppressing the CVE for json-patch
]]></notes>
<cve>CVE-2018-14632</cve>
</suppress>
<suppress>
<notes><![CDATA[
Suppressing the CVE for Guava
]]></notes>
<cve>CVE-2018-10237</cve>
</suppress>
<suppress>
<notes><![CDATA[
Suppressing the CVE for jackson-databind
]]></notes>
<cve>CVE-2018-1000873</cve>
<cve>CVE-2018-14719</cve>
<cve>CVE-2018-14720</cve>
<cve>CVE-2018-14721</cve>
<cve>CVE-2018-19360</cve>
<cve>CVE-2018-19361</cve>
<cve>CVE-2018-19362</cve>
</suppress>
<suppress>
<notes><![CDATA[
Suppressing the CVE for slf4j-ext
]]></notes>
<cve>CVE-2018-8088</cve>
</suppress>
</suppressions>
3 changes: 2 additions & 1 deletion gradle/security.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ check.dependsOn dependencyCheckAnalyze
dependencyCheck {
cveValidForHours = 8
failBuildOnCVSS = 5
suppressionFiles = ["config/security-suppressions.xml"]
analyzers {
nexusEnabled = false
pyDistributionEnabled = false
Expand All @@ -17,4 +18,4 @@ dependencyCheck {
nuspecEnabled = false
assemblyEnabled = false
}
}
}