Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove weld-probe-core #2506

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -918,11 +918,6 @@
<artifactId>weld-environment-common</artifactId>
<version>${version.lib.weld}</version>
</dependency>
<dependency>
<groupId>org.jboss.weld.probe</groupId>
<artifactId>weld-probe-core</artifactId>
<version>${version.lib.weld}</version>
</dependency>
<dependency>
<groupId>org.jboss.classfilewriter</groupId>
<artifactId>jboss-classfilewriter</artifactId>
Expand Down
69 changes: 0 additions & 69 deletions etc/dependency-check-suppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,75 +26,6 @@
<cpe>cpe:/a:processing:processing</cpe>
</suppress>

<!-- weld-probe-core contains META-INF/client/probe.js which has some javascript
CVEs. This javascript appears to be for developement and is never served
by Helidon. So we exclude these CVEs
-->
<suppress>
<notes><![CDATA[
file name: weld-probe-core-3.1.4.Final.jar: probe.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/bootstrap@.*$</packageUrl>
<cve>CVE-2015-9251</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: weld-probe-core-3.1.4.Final.jar: probe.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/bootstrap@.*$</packageUrl>
<cve>CVE-2018-14040</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: weld-probe-core-3.1.4.Final.jar: probe.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/bootstrap@.*$</packageUrl>
<cve>CVE-2018-14041</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: weld-probe-core-3.1.4.Final.jar: probe.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/bootstrap@.*$</packageUrl>
<cve>CVE-2018-14042</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: weld-probe-core-3.1.4.Final.jar: probe.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/bootstrap@.*$</packageUrl>
<cve>CVE-2019-11358</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: weld-probe-core-3.1.4.Final.jar: probe.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/bootstrap@.*$</packageUrl>
<cve>CVE-2019-8331</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: weld-probe-core-3.1.4.Final.jar: probe.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/bootstrap@.*$</packageUrl>
<cve>CVE-2020-11022</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: weld-probe-core-3.1.4.Final.jar: probe.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/bootstrap@.*$</packageUrl>
<cve>CVE-2020-11023</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: weld-probe-core-3.1.4.Final.jar: probe.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/bootstrap@.*$</packageUrl>
<vulnerabilityName>reDOS - regular expression denial of service</vulnerabilityName>
</suppress>
<!-- End of Weld/javascript related supressions -->

<!-- This CVE is against the etcd server. We ship a Java client -->
<suppress>
<notes><![CDATA[
Expand Down
17 changes: 6 additions & 11 deletions microprofile/weld/weld-se-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-core</artifactId>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.jboss.weld.probe</groupId>
<artifactId>weld-probe-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--
Hard-coding reduced dependencies below.
Expand Down Expand Up @@ -64,17 +70,6 @@
<artifactId>weld-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.weld.probe</groupId>
<artifactId>weld-probe-core</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-core-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-spi</artifactId>
Expand Down