GUACAMOLE-793: Add abstract mechanism for parsing CAS group names.

This commit is contained in:
Michael Jumper
2020-12-12 02:02:06 -08:00
parent 7b8dc36644
commit 749e53b9c3
6 changed files with 407 additions and 0 deletions

View File

@@ -183,6 +183,26 @@
<scope>provided</scope>
</dependency>
<!-- JUnit -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.6.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>