GUACAMOLE-773: Update Java dependencies to latest stable, compatible versions.

This commit is contained in:
Michael Jumper
2021-12-25 15:43:53 -08:00
parent 014d692567
commit b8d23962d6
107 changed files with 2317 additions and 109 deletions

View File

@@ -325,31 +325,17 @@
<artifactId>jersey-media-json-jackson</artifactId>
<exclusions>
<!-- Use newer 2.12.2 version required by Guacamole, rather
than 2.11.3 version required by Jersey (see below) -->
<!-- Resolve version conflict (see below - transitive
dependencies of jersey-media-json-jackson disagree on
1.2.1 vs. 1.2.2) -->
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Force newer version of Jackson, rather than slightly older version
specified by Jersey -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
</dependency>
<!-- JSR-250 annotations -->
<dependency>
<groupId>javax.annotation</groupId>
@@ -363,6 +349,14 @@
<artifactId>guava</artifactId>
</dependency>
<!-- Force use of version 1.2.2 (transitive dependencies of
jersey-media-json-jackson disagree on 1.2.1 vs. 1.2.2) -->
<dependency>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
<version>1.2.2</version>
</dependency>
</dependencies>
</project>