Skip to content

Commit

Permalink
Exclude bouncycastle CVEs, fix janino dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Shmuma committed Jun 3, 2024
1 parent 60abdae commit 31caa3c
Showing 1 changed file with 26 additions and 5 deletions.
31 changes: 26 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,14 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.janino</groupId>
<artifactId>commons-compiler</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -215,6 +223,18 @@
<version>0.27</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
<version>3.1.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>commons-compiler</artifactId>
<version>3.1.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-aws</artifactId>
Expand Down Expand Up @@ -385,10 +405,6 @@
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-ext-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.jackson</groupId>
<artifactId>*</artifactId>
Expand Down Expand Up @@ -656,7 +672,7 @@
janino is not included in the released artifact,
but 'provided' by the runtime Spark cluster.
-->
<exclude>CVE-2023-33546</exclude>
<!-- <exclude>CVE-2023-33546</exclude>-->
<!-- Ignore vulnerability reported for transitive
dependency com.nimbusds:nimbus-jose-jwt:jar:9.8.1
via org.apache.hadoop:hadoop-client:jar:3.3.6
Expand All @@ -672,6 +688,11 @@
<exclude>CVE-2024-29857</exclude>
<exclude>CVE-2024-30171</exclude>
<exclude>CVE-2024-30172</exclude>
<exclude>CVE-2023-33201</exclude>
<exclude>CVE-2023-33202</exclude>
<exclude>CVE-2024-29857</exclude>
<exclude>CVE-2024-30171</exclude>
<exclude>CVE-2024-34447</exclude>
</excludeVulnerabilityIds>
</configuration>
</plugin>
Expand Down

0 comments on commit 31caa3c

Please sign in to comment.