diff --git a/Jenkinsfile b/Jenkinsfile index a76eb519e2255626646a8de86bc45dfc27060476..3d8ffc106ffa812ab03fdebf8959ddebdb0b9b8f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -166,8 +166,25 @@ pipeline { --disableArchive --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 { diff --git a/dependency-check-supressions.xml b/dependency-check-supressions.xml new file mode 100644 index 0000000000000000000000000000000000000000..880fe0f371d78abb14bbb675302987dbeb19ec81 --- /dev/null +++ b/dependency-check-supressions.xml @@ -0,0 +1,6 @@ +<?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