mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
73 lines
2.3 KiB
XML
73 lines
2.3 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.apache.guacamole</groupId>
|
|
<artifactId>guacamole-auth-jdbc</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>0.9.9</version>
|
|
<name>guacamole-auth-jdbc</name>
|
|
<url>http://guac-dev.org/</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<modules>
|
|
|
|
<!-- Base JDBC classes -->
|
|
<module>modules/guacamole-auth-jdbc-base</module>
|
|
|
|
<!-- Database-specific implementations -->
|
|
<module>modules/guacamole-auth-jdbc-mysql</module>
|
|
<module>modules/guacamole-auth-jdbc-postgresql</module>
|
|
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<!-- Assembly plugin - for easy distribution -->
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.5.3</version>
|
|
<inherited>false</inherited>
|
|
<executions>
|
|
<execution>
|
|
<id>make-dist-archive</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<configuration>
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/dist.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<!-- Guacamole Extension API -->
|
|
<dependency>
|
|
<groupId>org.apache.guacamole</groupId>
|
|
<artifactId>guacamole-ext</artifactId>
|
|
<version>0.9.9</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|