Make keyboard modifiers work by avoiding duplicate name
[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.6.1</version>
9     <name>guacamole-common-js</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
18         <plugins>
19             <plugin>
20                 <artifactId>maven-assembly-plugin</artifactId>
21                 <configuration>
22                     <descriptors>
23                         <descriptor>static.xml</descriptor>
24                     </descriptors>
25                 </configuration>
26                 <executions>
27                     <execution>
28                         <id>make-zip</id>
29                         <phase>package</phase>
30                         <goals>
31                             <goal>attached</goal>
32                         </goals>
33                     </execution>
34                 </executions>
35             </plugin>
36         </plugins>
37
38     </build>
39
40 </project>