mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
Children of the parent project will inherit the parent's build plugins, which breaks everything when each child project attempts to build its own source archive.
235 lines
8.6 KiB
XML
235 lines
8.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
<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.apache.guacamole</groupId>
|
|
<artifactId>guacamole-client</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.3.0</version>
|
|
<name>guacamole-client</name>
|
|
<url>http://guacamole.apache.org/</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<guava.version>30.1-jre</guava.version>
|
|
<guice.version>4.2.3</guice.version>
|
|
<guice-bridge.version>2.6.1</guice-bridge.version>
|
|
<jackson.version>2.10.1</jackson.version>
|
|
<jersey.version>2.31</jersey.version>
|
|
<junit.version>5.6.0</junit.version>
|
|
<logback.version>1.2.3</logback.version>
|
|
<slf4j.version>1.7.30</slf4j.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
|
|
<!-- Guacamole web application -->
|
|
<module>guacamole</module>
|
|
|
|
<!-- Guacamole Java API -->
|
|
<module>guacamole-common</module>
|
|
|
|
<!-- Guacamole webapp extension API -->
|
|
<module>guacamole-ext</module>
|
|
|
|
<!-- Guacamole JavaScript API -->
|
|
<module>guacamole-common-js</module>
|
|
|
|
<!-- Authentication extensions -->
|
|
<module>extensions/guacamole-auth-cas</module>
|
|
<module>extensions/guacamole-auth-duo</module>
|
|
<module>extensions/guacamole-auth-header</module>
|
|
<module>extensions/guacamole-auth-jdbc</module>
|
|
<module>extensions/guacamole-auth-json</module>
|
|
<module>extensions/guacamole-auth-ldap</module>
|
|
<module>extensions/guacamole-auth-openid</module>
|
|
<module>extensions/guacamole-auth-quickconnect</module>
|
|
<module>extensions/guacamole-auth-saml</module>
|
|
<module>extensions/guacamole-auth-totp</module>
|
|
|
|
<!-- Example web applications using the Guacamole APIs -->
|
|
<module>doc/guacamole-example</module>
|
|
<module>doc/guacamole-playback-example</module>
|
|
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>lgpl-extensions</id>
|
|
<modules>
|
|
<module>extensions/guacamole-auth-radius</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<!-- Verify format using Apache RAT -->
|
|
<plugin>
|
|
<groupId>org.apache.rat</groupId>
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
<version>0.12</version>
|
|
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>.dockerignore</exclude>
|
|
<exclude>CONTRIBUTING</exclude>
|
|
<exclude>**/README.md</exclude>
|
|
<exclude>extensions/**/*</exclude>
|
|
<exclude>**/*.json</exclude>
|
|
<exclude>doc/**/html/*.html</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
|
|
<!-- Bind RAT to validate phase -->
|
|
<executions>
|
|
<execution>
|
|
<id>validate</id>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<!-- Guava utility library -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>${guava.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Guice dependency injection -->
|
|
<dependency>
|
|
<groupId>com.google.inject</groupId>
|
|
<artifactId>guice</artifactId>
|
|
<version>${guice.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
<artifactId>guice-assistedinject</artifactId>
|
|
<version>${guice.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
<artifactId>guice-multibindings</artifactId>
|
|
<version>${guice.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
<artifactId>guice-servlet</artifactId>
|
|
<version>${guice.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Jersey JAX-RS implementation -->
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.containers</groupId>
|
|
<artifactId>jersey-container-servlet-core</artifactId>
|
|
<version>${jersey.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.inject</groupId>
|
|
<artifactId>jersey-hk2</artifactId>
|
|
<version>${jersey.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.hk2</groupId>
|
|
<artifactId>guice-bridge</artifactId>
|
|
<version>${guice-bridge.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Jackson JSON mapper -->
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
|
<version>${jersey.version}</version>
|
|
|
|
<!-- Exclude StAX API, which is part of Java 6 -->
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.xml.stream</groupId>
|
|
<artifactId>stax-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Logging -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${logback.version}</version>
|
|
</dependency>
|
|
|
|
<!-- JUnit -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|