GUACAMOLE-990: Limit maximum number of tracked addresses.

This commit is contained in:
Michael Jumper
2022-08-22 10:40:52 -07:00
parent 2b19bc95da
commit 43f65357c8
11 changed files with 127 additions and 16 deletions

View File

@@ -53,6 +53,27 @@
<artifactId>guacamole-ext</artifactId>
<version>1.4.0</version>
<scope>provided</scope>
<!-- Exclude transitive dependencies that will be overridden by
newer versions required by Caffeine -->
<exclusions>
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Guava Base Libraries -->
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>2.9.3</version>
</dependency>
</dependencies>