Skip to content
Snippets Groups Projects
Commit a54db134 authored by OZGCloud's avatar OZGCloud
Browse files

increase dependency check thresholds

parent a366cad2
No related branches found
No related tags found
No related merge requests found
...@@ -166,8 +166,25 @@ pipeline { ...@@ -166,8 +166,25 @@ pipeline {
--disableArchive --disableArchive
--prettyPrint''', odcInstallation: 'dependency-check-owasp' --prettyPrint''', odcInstallation: 'dependency-check-owasp'
dependencyCheckPublisher pattern: 'dependency-check-report.xml' dependencyCheckPublisher(
} pattern: 'dependency-check-report.xml' ,
unstableNewCritical: 999,
unstableNewHigh: 999,
unstableNewMedium: 999,
unstableNewLow: 999,
unstableTotalCritical: 999,
unstableTotalHigh: 999,
unstableTotalMedium: 999,
unstableTotalLow: 999,
failedNewCritical: 999,
failedNewHigh: 999,
failedNewMedium: 999,
failedNewLow: 999,
failedTotalCritical: 999,
failedTotalHigh: 999,
failedTotalMedium: 999,
failedTotalLow: 999
) }
} }
} }
post { post {
......
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<suppress>
<vulnerabilityName>CVE-DUMMY</vulnerabilityName>
</suppress>
</suppressions>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment