mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-05 20:57:40 +00:00
68 lines
2.1 KiB
XML
68 lines
2.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>net.sourceforge.guacamole</groupId>
|
|
<artifactId>guacamole-common-js</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>0.3.0-SNAPSHOT</version>
|
|
<name>guacamole-common-js</name>
|
|
<url>http://guacamole.sourceforge.net/</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>static.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-zip</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>attached</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<extensions>
|
|
<!-- Required for SSH deploy -->
|
|
<extension>
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
<artifactId>wagon-ssh-external</artifactId>
|
|
</extension>
|
|
</extensions>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>guac-dev</id>
|
|
<url>http://guac-dev.org/repo</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>guac-dev</id>
|
|
<url>${guac-dev.dist.repo}</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
</project>
|