Fixed project URL.
[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</artifactId>
7     <packaging>war</packaging>
8     <version>0.6.0</version>
9     <name>guacamole</name>
10     <url>http://guac-dev.org/</url>
11
12     <properties>
13         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14     </properties>
15
16     <build>
17         <plugins>
18
19             <!-- Written for 1.6 -->
20             <plugin>
21                 <groupId>org.apache.maven.plugins</groupId>
22                 <artifactId>maven-compiler-plugin</artifactId>
23                 <configuration>
24                     <source>1.6</source>
25                     <target>1.6</target>
26                 </configuration>
27             </plugin>
28
29             <plugin>
30                 <groupId>org.apache.maven.plugins</groupId>
31                 <artifactId>maven-war-plugin</artifactId>
32                 <configuration>
33                     
34                     <!-- Filter webapp dir --> 
35                     <webResources>
36                         <resource>
37                             <directory>src/main/webapp</directory>
38                             <filtering>true</filtering>
39                         </resource>
40                     </webResources>
41                     
42                     <!-- Add files from guacamole-common-js -->
43                     <overlays>
44                         <overlay>
45                             <groupId>net.sourceforge.guacamole</groupId>
46                             <artifactId>guacamole-common-js</artifactId>
47                             <type>zip</type>
48                         </overlay>
49                     </overlays>
50                     
51                 </configuration>
52             </plugin>
53
54         </plugins>
55     </build>
56
57     <dependencies>
58
59         <!-- Java servlet API -->
60         <dependency>
61             <groupId>javax.servlet</groupId>
62             <artifactId>servlet-api</artifactId>
63             <version>2.5</version>
64             <scope>provided</scope>
65         </dependency>
66
67         <!-- SLF4J - logging -->
68         <dependency>
69             <groupId>org.slf4j</groupId>
70             <artifactId>slf4j-api</artifactId>
71             <version>1.6.1</version>
72         </dependency>
73         <dependency>
74             <groupId>org.slf4j</groupId>
75             <artifactId>slf4j-jcl</artifactId>
76             <version>1.6.1</version>
77             <scope>runtime</scope>
78         </dependency>
79
80         <!-- Guacamole Java API -->
81         <dependency>
82             <groupId>net.sourceforge.guacamole</groupId>
83             <artifactId>guacamole-common</artifactId>
84             <version>0.6.0</version>
85         </dependency>
86
87         <!-- Guacamole Extension API -->
88         <dependency>
89             <groupId>net.sourceforge.guacamole</groupId>
90             <artifactId>guacamole-ext</artifactId>
91             <version>0.6.0</version>
92         </dependency>
93
94         <!-- Guacamole JavaScript API -->
95         <dependency>
96             <groupId>net.sourceforge.guacamole</groupId>
97             <artifactId>guacamole-common-js</artifactId>
98             <version>0.6.0</version>
99             <type>zip</type>
100             <scope>runtime</scope>
101         </dependency>
102
103     </dependencies>
104
105     <repositories>
106         
107         <!-- Central Guacamole repository -->
108         <repository>
109             <id>guac-dev</id>
110             <url>http://guac-dev.org/repo</url>
111         </repository>
112         
113     </repositories>
114
115 </project>