GUACAMOLE-1956: Update Java dependencies to latest compatible.

This commit is contained in:
Michael Jumper
2025-01-01 21:10:16 -08:00
parent ce98043c16
commit 2df43bce9c
73 changed files with 410 additions and 97 deletions

View File

@@ -77,9 +77,28 @@
<artifactId>commons-codec</artifactId>
</exclusion>
<!--
Replace older BouncyCastle (1.70) with newer, compatible
version (1.79), which has since been renamed from
"bcpkix-jdk15on" to "bcpkix-jdk15to18".
-->
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- BouncyCastle for Java 5 and above (formerly "bcpkix-jdk15on", a
transitive dependency of cas-client-core that we are overriding to
force an update) -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15to18</artifactId>
<version>1.79</version>
</dependency>
<!-- Guava - Utility Library -->
<dependency>
<groupId>com.google.guava</groupId>