GUACAMOLE-96: Handle enrollment via QR code for unconfirmed users.

This commit is contained in:
Michael Jumper
2017-11-20 14:01:39 -08:00
parent 8ac8fec478
commit 170a11bf2a
7 changed files with 465 additions and 11 deletions

View File

@@ -249,6 +249,26 @@
<scope>test</scope>
</dependency>
<!-- ZXing - Barcode library -->
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.3.1</version>
</dependency>
<!-- Guacamole depends on an implementation of JAX-WS -->
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>