Files
kestra/owasp-dependency-suppressions.xml
Loïc Mathieu 98b7cec500 feat: OWASP dependency check
Check for known vulnerabilities each day thanks to the OWASP Dependency Check Gradle plugin.
2024-07-18 18:58:26 +02:00

27 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<!--
This is a CPE/CVE suppression file for the Gradle dependency check plugin.
Each CPE that is found by error (false positive) needs to be suppressed for a specific jar using it's GAV.
If a CVE is disputed or cannot be fixed, it needs to be suppressed by it's CVE identifier.
See https://jeremylong.github.io/DependencyCheck/general/suppression.html
-->
<suppress>
<notes>
<![CDATA[
Suppress the false positive CPE for Kestra jdbc-mysql to mysql itself
]]>
</notes>
<gav regex="true">io\.kestra:jdbc-mysql.*</gav>
<cpe>cpe:/a:mysql:mysql</cpe>
</suppress>
<suppress>
<notes>
<![CDATA[
Suppress the false positive CPE for plexus-component-annotations, plexus-interpolation and plexus-utils to codehaus-plexus
]]>
</notes>
<gav regex="true">org\.codehaus\.plexus:plexus.*</gav>
<cpe>cpe:/a:codehaus-plexus_project:codehaus-plexus</cpe>
</suppress>
</suppressions>