55 lines
1.8 KiB
XML
55 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>cm.soungui.guacamole</groupId>
|
|
<artifactId>guacamole-ext-wallix-sync</artifactId>
|
|
<version>0.0.1</version>
|
|
|
|
<name>guacamole-ext-wallix-sync</name>
|
|
<description>Guacamole extension for synchronization of parameters from Wallix Bastion.</description>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Guacamole Extension API -->
|
|
<dependency>
|
|
<groupId>org.apache.guacamole</groupId>
|
|
<artifactId>guacamole-ext</artifactId>
|
|
<version>1.6.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Slf4j API -->
|
|
<!-- This is needed only if your listener wants to
|
|
write to the Guacamole web application log -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.17.0</version> <!-- Use the latest stable version -->
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|