Initial commit
[guacamole-common-js.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
4     <modelVersion>4.0.0</modelVersion>
5     <groupId>net.sourceforge.guacamole</groupId>
6     <artifactId>guacamole-common-js</artifactId>
7     <packaging>pom</packaging>
8     <version>0.3.0-SNAPSHOT</version>
9     <name>guacamole-common-js</name>
10     <url>http://guacamole.sourceforge.net/</url>
11
12     <build>
13
14         <plugins>
15             <plugin>
16                 <artifactId>maven-assembly-plugin</artifactId>
17                 <configuration>
18                     <descriptors>
19                         <descriptor>static.xml</descriptor>
20                     </descriptors>
21                 </configuration>
22                 <executions>
23                     <execution>
24                         <id>make-zip</id>
25                         <phase>package</phase>
26                         <goals>
27                             <goal>attached</goal>
28                         </goals>
29                     </execution>
30                 </executions>
31             </plugin>
32         </plugins>
33
34         <extensions>
35             <!-- Required for SSH deploy -->
36             <extension>
37                 <groupId>org.apache.maven.wagon</groupId>
38                 <artifactId>wagon-ssh-external</artifactId>
39             </extension>
40         </extensions>
41
42     </build>
43
44     <repositories>
45         <repository>
46             <id>guac-dev</id>
47             <url>http://guac-dev.org/repo</url>
48             <snapshots>
49                 <enabled>true</enabled>
50                 <updatePolicy>always</updatePolicy>
51                 <checksumPolicy>fail</checksumPolicy>
52             </snapshots>
53         </repository>
54     </repositories>
55
56     <distributionManagement>
57         <repository>
58             <id>guac-dev</id>
59             <url>${guac-dev.dist.repo}</url>
60         </repository>
61     </distributionManagement>
62
63 </project>