clockwerk-guacamole – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 eva 1 <?xml version='1.0' encoding='UTF-8'?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>net.sourceforge.guacamole</groupId>
5 <artifactId>guacamole</artifactId>
6 <version>0.6.0</version>
7 <packaging>war</packaging>
8  
9 <name>guacamole</name>
10 <url>http://guac-dev.org/</url>
11 <properties>
12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13 <debian.originalVersion>0.6.0</debian.originalVersion>
14 <debian.package>guacamole</debian.package>
15 <debian.mavenRules>net.sourceforge.guacamole guacamole pom 0.6.0 *</debian.mavenRules>
16 </properties>
17 <build>
18 <!-- guacamole.war -->
19 <finalName>guacamole</finalName>
20 <plugins>
21 <!-- Written for 1.6 -->
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-compiler-plugin</artifactId>
25 <configuration>
26 <source>1.6</source>
27 <target>1.6</target>
28 </configuration>
29 <version>2.0.2</version>
30 </plugin>
31 <plugin>
32 <configuration>
33 <!-- Filter webapp dir -->
34 <webResources>
35 <resource>
36 <directory>src/main/webapp</directory>
37 <filtering>true</filtering>
38 </resource>
39 </webResources>
40 <!-- Add files from guacamole-common-js -->
41 <overlays>
42 <overlay>
43 <groupId>net.sourceforge.guacamole</groupId>
44 <artifactId>guacamole-common-js</artifactId>
45 <type>zip</type>
46 </overlay>
47 </overlays>
48 </configuration>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-war-plugin</artifactId>
51 <version>2.1.1</version>
52 </plugin>
53 </plugins>
54 </build>
55 <dependencies>
56 <!-- Java servlet API -->
57 <dependency>
58 <groupId>javax.servlet</groupId>
59 <artifactId>servlet-api</artifactId>
60 <version>2.5</version>
61 <scope>provided</scope>
62 </dependency>
63 <!-- SLF4J - logging -->
64 <dependency>
65 <groupId>org.slf4j</groupId>
66 <artifactId>slf4j-api</artifactId>
67 <version>debian</version>
68 </dependency>
69 <dependency>
70 <groupId>org.slf4j</groupId>
71 <artifactId>slf4j-jcl</artifactId>
72 <version>debian</version>
73 <scope>runtime</scope>
74 </dependency>
75 <!-- Guacamole Java API -->
76 <dependency>
77 <groupId>net.sourceforge.guacamole</groupId>
78 <artifactId>guacamole-common</artifactId>
79 <version>0.6.0</version>
80 </dependency>
81 <!-- Guacamole Extension API -->
82 <dependency>
83 <groupId>net.sourceforge.guacamole</groupId>
84 <artifactId>guacamole-ext</artifactId>
85 <version>0.6.0</version>
86 </dependency>
87 <!-- Guacamole JavaScript API -->
88 <dependency>
89 <groupId>net.sourceforge.guacamole</groupId>
90 <artifactId>guacamole-common-js</artifactId>
91 <version>0.6.0</version>
92 <type>zip</type>
93 <scope>runtime</scope>
94 </dependency>
95 </dependencies>
96 </project>