Updated version numbers to 0.4.0
[guacamole.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-default-webapp</artifactId>
7     <packaging>war</packaging>
8     <version>0.4.0</version>
9     <name>guacamole-default-webapp</name>
10     <url>http://guacamole.sourceforge.net/</url>
11
12     <properties>
13         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14     </properties>
15
16     <build>
17         <plugins>
18
19             <plugin>
20                 <groupId>org.apache.maven.plugins</groupId>
21                 <artifactId>maven-compiler-plugin</artifactId>
22                 <configuration>
23                     <source>1.6</source>
24                     <target>1.6</target>
25                 </configuration>
26             </plugin>
27
28             <plugin>
29                 <groupId>org.apache.maven.plugins</groupId>
30                 <artifactId>maven-war-plugin</artifactId>
31                 <configuration>
32                     <overlays>
33                         <overlay>
34                             <groupId>net.sourceforge.guacamole</groupId>
35                             <artifactId>guacamole-common-js</artifactId>
36                             <type>zip</type>
37                         </overlay>
38                     </overlays>
39                 </configuration>
40             </plugin>
41
42         </plugins>
43
44         <extensions>
45             <!-- Required for SSH deploy -->
46             <extension>
47                 <groupId>org.apache.maven.wagon</groupId>
48                 <artifactId>wagon-ssh-external</artifactId>
49             </extension>
50         </extensions>
51
52     </build>
53
54     <dependencies>
55
56         <dependency>
57             <groupId>javax.servlet</groupId>
58             <artifactId>servlet-api</artifactId>
59             <version>2.5</version>
60             <scope>provided</scope>
61         </dependency>
62
63         <dependency>
64             <groupId>net.sourceforge.guacamole</groupId>
65             <artifactId>guacamole-common</artifactId>
66             <version>0.4.0</version>
67             <scope>compile</scope>
68         </dependency>
69
70         <dependency>
71             <groupId>net.sourceforge.guacamole</groupId>
72             <artifactId>guacamole-common-js</artifactId>
73             <version>0.4.0</version>
74             <type>zip</type>
75             <scope>runtime</scope>
76         </dependency>
77
78     </dependencies>
79
80     <repositories>
81         <repository>
82             <id>guac-dev</id>
83             <url>http://guac-dev.org/repo</url>
84         </repository>
85     </repositories>
86
87     <distributionManagement>
88         <repository>
89             <id>guac-dev</id>
90             <url>${guac-dev.dist.repo}</url>
91         </repository>
92     </distributionManagement>
93
94 </project>