forked from shaba/openuds
95 lines
3.1 KiB
XML
95 lines
3.1 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.openuds.server</groupId>
|
|
<artifactId>guacamole-auth-uds</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>2.5.0</version>
|
|
<name>UDS Integration Extension for Apache Guacamole</name>
|
|
<url>https://github.com/dkmstr/openuds</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<!-- Compile using Java 1.8 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.3</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<compilerArgs>
|
|
<arg>-Xlint:all</arg>
|
|
<arg>-Werror</arg>
|
|
</compilerArgs>
|
|
<fork>true</fork>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Copy dependencies prior to packaging -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>2.10</version>
|
|
<executions>
|
|
<execution>
|
|
<id>unpack-dependencies</id>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>unpack-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeScope>runtime</includeScope>
|
|
<outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
|
|
<!-- Servlet API -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<scope>provided</scope>
|
|
<version>2.5</version>
|
|
</dependency>
|
|
|
|
<!-- JAX-RS API -->
|
|
<dependency>
|
|
<groupId>javax.ws.rs</groupId>
|
|
<artifactId>jsr311-api</artifactId>
|
|
<version>1.1.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Guacamole extension API -->
|
|
<dependency>
|
|
<groupId>org.apache.guacamole</groupId>
|
|
<artifactId>guacamole-ext</artifactId>
|
|
<version>1.2.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Guice - Dependency Injection -->
|
|
<dependency>
|
|
<groupId>com.google.inject</groupId>
|
|
<artifactId>guice</artifactId>
|
|
<version>3.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|