forked from dschadow/JavaSecurity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependency-check-suppressions.xml
More file actions
41 lines (41 loc) · 1.32 KB
/
Copy pathdependency-check-suppressions.xml
File metadata and controls
41 lines (41 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.1.xsd">
<!-- this is actually one of the project artifacts and not a dependency -->
<suppress>
<notes><![CDATA[
file name: sso-with-github.jar
]]></notes>
<filePath regex="true">.*\bsso-with-github\.jar</filePath>
<cve>CVE-2010-2542</cve>
</suppress>
<!-- no SVG usage -->
<suppress>
<notes><![CDATA[
file name: batik-css-1.8.jar
]]></notes>
<gav regex="true">^org\.apache\.xmlgraphics:batik-css:.*$</gav>
<cpe>cpe:/a:apache:batik</cpe>
</suppress>
<suppress>
<notes><![CDATA[
file name: batik-ext-1.8.jar
]]></notes>
<gav regex="true">^org\.apache\.xmlgraphics:batik-ext:.*$</gav>
<cpe>cpe:/a:apache:batik</cpe>
</suppress>
<suppress>
<notes><![CDATA[
file name: batik-util-1.8.jar
]]></notes>
<gav regex="true">^org\.apache\.xmlgraphics:batik-util:.*$</gav>
<cpe>cpe:/a:apache:batik</cpe>
</suppress>
<!-- no Groovy usage -->
<suppress>
<notes><![CDATA[
file name: groovy-2.4.10.jar
]]></notes>
<gav regex="true">^org\.codehaus\.groovy:groovy:.*$</gav>
<cpe>cpe:/a:apache:groovy</cpe>
</suppress>
</suppressions>