[42bd667] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
---|
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
---|
| 4 | http://maven.apache.org/maven-v4_0_0.xsd"> |
---|
| 5 | |
---|
| 6 | <modelVersion>4.0.0</modelVersion> |
---|
| 7 | <groupId>org.apache.guacamole</groupId> |
---|
| 8 | <artifactId>websocket</artifactId> |
---|
| 9 | <packaging>war</packaging> |
---|
| 10 | <version>1.1.27</version> |
---|
| 11 | <name>websocket</name> |
---|
| 12 | |
---|
| 13 | <properties> |
---|
| 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
| 15 | </properties> |
---|
| 16 | |
---|
| 17 | |
---|
| 18 | |
---|
| 19 | <build> |
---|
| 20 | <plugins> |
---|
| 21 | |
---|
| 22 | <!-- Compile using Java 1.6 --> |
---|
| 23 | <plugin> |
---|
| 24 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 25 | <artifactId>maven-compiler-plugin</artifactId> |
---|
| 26 | <version>3.3</version> |
---|
| 27 | <configuration> |
---|
| 28 | <source>1.6</source> |
---|
| 29 | <target>1.6</target> |
---|
| 30 | </configuration> |
---|
| 31 | </plugin> |
---|
| 32 | |
---|
| 33 | <!-- Overlay guacamole-common-js (zip) --> |
---|
| 34 | <plugin> |
---|
| 35 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 36 | <artifactId>maven-war-plugin</artifactId> |
---|
| 37 | <version>2.6</version> |
---|
| 38 | <configuration> |
---|
| 39 | <overlays> |
---|
| 40 | <overlay> |
---|
| 41 | <groupId>org.apache.guacamole</groupId> |
---|
| 42 | <artifactId>guacamole-common-js</artifactId> |
---|
| 43 | <type>zip</type> |
---|
| 44 | </overlay> |
---|
| 45 | </overlays> |
---|
| 46 | </configuration> |
---|
| 47 | </plugin> |
---|
| 48 | |
---|
| 49 | |
---|
| 50 | </plugins> |
---|
| 51 | |
---|
| 52 | </build> |
---|
| 53 | |
---|
| 54 | <dependencies> |
---|
| 55 | |
---|
| 56 | <!-- Servlet API --> |
---|
| 57 | <dependency> |
---|
| 58 | <groupId>javax.servlet</groupId> |
---|
| 59 | <artifactId>javax.servlet-api</artifactId> |
---|
| 60 | <version>3.1.0</version> |
---|
| 61 | <scope>provided</scope> |
---|
| 62 | </dependency> |
---|
| 63 | |
---|
| 64 | |
---|
| 65 | <dependency> |
---|
| 66 | <groupId>javax.websocket</groupId> |
---|
| 67 | <artifactId>javax.websocket-api</artifactId> |
---|
| 68 | <version>1.1</version> |
---|
| 69 | <scope>provided</scope> |
---|
| 70 | </dependency> |
---|
| 71 | |
---|
| 72 | <!-- Main Guacamole library --> |
---|
| 73 | <dependency> |
---|
| 74 | <groupId>org.apache.guacamole</groupId> |
---|
| 75 | <artifactId>guacamole-common</artifactId> |
---|
| 76 | <version>1.0.0</version> |
---|
| 77 | <scope>compile</scope> |
---|
| 78 | </dependency> |
---|
| 79 | |
---|
| 80 | <!-- Guacamole JavaScript library --> |
---|
| 81 | <dependency> |
---|
| 82 | <groupId>org.apache.guacamole</groupId> |
---|
| 83 | <artifactId>guacamole-common-js</artifactId> |
---|
| 84 | <version>1.0.0</version> |
---|
| 85 | <type>zip</type> |
---|
| 86 | <scope>runtime</scope> |
---|
| 87 | </dependency> |
---|
| 88 | |
---|
| 89 | |
---|
| 90 | </dependencies> |
---|
| 91 | |
---|
| 92 | </project> |
---|