We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e043c32 commit dc9bd75Copy full SHA for dc9bd75
build.xml
@@ -1705,6 +1705,7 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant">
1705
reportoutputdirectory="${owasp.out.dir}"
1706
reportformat="ALL"
1707
failBuildOnCVSS="0">
1708
+ <suppressionfile path="${basedir}/owaspSuppressions.xml" />
1709
1710
<fileset dir="${ivy.lib}">
1711
<include name="**/*.jar"/>
owaspSuppressions.xml
@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.2.xsd">
3
+ <suppress>
4
+ <!-- ZOOKEEPER-3217 -->
5
+ <cve>CVE-2018-8088</cve>
6
+ </suppress>
7
+</suppressions>
0 commit comments