2013-03-03 07:54:32 +04:00
<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>
2013-10-02 06:47:23 +04:00
<groupId > org.openuds.server</groupId>
2013-03-03 07:54:32 +04:00
<artifactId > transport</artifactId>
<packaging > war</packaging>
2017-04-10 03:40:32 +03:00
<version > 2.5.0</version>
2013-03-03 07:54:32 +04:00
<name > Guacamole Transport</name>
2016-04-11 07:38:32 +03:00
<url > https://github.com/dkmstr/openuds</url>
2013-03-03 07:54:32 +04:00
<properties >
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
</properties>
2016-07-09 01:20:00 +03:00
<build >
<finalName > transport</finalName>
2013-03-03 07:54:32 +04:00
<plugins >
<!-- Compile using Java 1.6 -->
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
2016-07-09 01:20:00 +03:00
<version > 3.3</version>
2013-03-03 07:54:32 +04:00
<configuration >
2015-10-19 06:59:14 +03:00
<source > 1.6</source>
<target > 1.6</target>
2016-07-09 01:20:00 +03:00
<compilerArgs >
<arg > -Xlint:all</arg>
<arg > -Werror</arg>
</compilerArgs>
<fork > true</fork>
2013-03-03 07:54:32 +04:00
</configuration>
</plugin>
2016-07-09 01:20:00 +03:00
<!-- Overlay guacamole - common - js (zip) -->
2013-03-03 07:54:32 +04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-war-plugin</artifactId>
2016-07-09 01:20:00 +03:00
<version > 2.6</version>
2013-03-03 07:54:32 +04:00
<configuration >
<overlays >
<overlay >
2016-07-09 01:20:00 +03:00
<groupId > org.apache.guacamole</groupId>
2013-03-03 07:54:32 +04:00
<artifactId > guacamole-common-js</artifactId>
<type > zip</type>
</overlay>
</overlays>
</configuration>
</plugin>
</plugins>
2016-07-09 01:20:00 +03:00
</build>
<dependencies >
2013-03-03 07:54:32 +04:00
<!-- Servlet API -->
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > servlet-api</artifactId>
<scope > provided</scope>
2015-10-19 06:59:14 +03:00
<version > 2.5</version>
2013-03-03 07:54:32 +04:00
</dependency>
2016-07-09 01:20:00 +03:00
<!-- SLF4J - logging -->
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-api</artifactId>
<version > 1.6.1</version>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-jcl</artifactId>
<version > 1.6.1</version>
<scope > runtime</scope>
</dependency>
2013-03-03 07:54:32 +04:00
<!-- Main Guacamole library -->
<dependency >
2016-07-09 01:20:00 +03:00
<groupId > org.apache.guacamole</groupId>
2013-03-03 07:54:32 +04:00
<artifactId > guacamole-common</artifactId>
2018-03-12 07:33:30 +03:00
<version > 0.9.14</version>
2013-03-03 07:54:32 +04:00
</dependency>
<!-- Guacamole JavaScript library -->
<dependency >
2016-07-09 01:20:00 +03:00
<groupId > org.apache.guacamole</groupId>
2013-03-03 07:54:32 +04:00
<artifactId > guacamole-common-js</artifactId>
2018-03-12 07:33:30 +03:00
<version > 0.9.14</version>
2013-03-03 07:54:32 +04:00
<type > zip</type>
<scope > runtime</scope>
</dependency>
2016-07-09 01:20:00 +03:00
<!-- JSR 356 WebSocket API -->
<dependency >
<groupId > javax.websocket</groupId>
<artifactId > javax.websocket-api</artifactId>
<version > 1.0</version>
<scope > provided</scope>
</dependency>
<!-- Jetty 8 servlet API (websocket) -->
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-websocket</artifactId>
<version > 8.1.1.v20120215</version>
<scope > provided</scope>
</dependency>
<!-- Jetty 9.0 servlet API (websocket) -->
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-parent</artifactId>
<version > 20</version>
<scope > provided</scope>
<type > pom</type>
</dependency>
<dependency >
<groupId > org.eclipse.jetty.websocket</groupId>
<artifactId > websocket-api</artifactId>
<version > 9.0.7.v20131107</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.eclipse.jetty.websocket</groupId>
<artifactId > websocket-servlet</artifactId>
<version > 9.0.7.v20131107</version>
<scope > provided</scope>
</dependency>
<!-- Tomcat servlet API (websocket) -->
<dependency >
<groupId > org.apache.tomcat</groupId>
<artifactId > tomcat-catalina</artifactId>
<version > 7.0.37</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.apache.tomcat</groupId>
<artifactId > tomcat-coyote</artifactId>
<version > 7.0.37</version>
<scope > provided</scope>
</dependency>
<!-- Jersey - Guice extension -->
<dependency >
<groupId > com.sun.jersey.contribs</groupId>
<artifactId > jersey-guice</artifactId>
<version > 1.17.1</version>
</dependency>
<!-- Guice Servlet -->
<dependency >
<groupId > com.google.inject.extensions</groupId>
<artifactId > guice-servlet</artifactId>
<version > 3.0</version>
</dependency>
<!-- Guice - Dependency Injection -->
<dependency >
<groupId > com.google.inject</groupId>
<artifactId > guice</artifactId>
<version > 3.0</version>
</dependency>
2013-03-03 07:54:32 +04:00
</dependencies>
</project>