Skip to content

Commit

Permalink
Fix some dependency CVEs
Browse files Browse the repository at this point in the history
  • Loading branch information
thegridman committed May 20, 2024
1 parent 5975b9f commit 6e800f6
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
10 changes: 10 additions & 0 deletions bedrock-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,16 @@
<groupId>jakarta.el</groupId>
<artifactId>jakarta.el-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.el</artifactId>
<exclusions>
<exclusion>
<groupId>jakarta.el</groupId>
<artifactId>jakarta.el-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.hamcrest</groupId>
Expand Down
8 changes: 8 additions & 0 deletions etc/dependency-check-suppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@
<cpe>cpe:/a:oracle:coherence</cpe>
</suppress>

<suppress>
<notes><![CDATA[
file name: jakarta.el-5.0.0-M1.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.glassfish/jakarta\.el@.*$</packageUrl>
<cpe>cpe:/a:eclipse:glassfish</cpe>
</suppress>

<suppress>
<notes><![CDATA[
file name: plexus-cipher-2.0.jar
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,17 @@
<artifactId>jakarta.el-api</artifactId>
<version>${jakarta.el.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.el</artifactId>
<version>${glassfish.el.version}</version>
<exclusions>
<exclusion>
<groupId>jakarta.el</groupId>
<artifactId>jakarta.el-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.jcraft</groupId>
Expand Down

0 comments on commit 6e800f6

Please sign in to comment.