2012-06-12 15:43:29 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-parent</artifactId>
|
2013-11-15 18:58:44 -05:00
|
|
|
<version>9.1.1-SNAPSHOT</version>
|
2012-06-12 15:43:29 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-06-18 12:48:33 -04:00
|
|
|
<artifactId>websocket-server</artifactId>
|
|
|
|
<name>Jetty :: Websocket :: Server</name>
|
2012-06-12 15:43:29 -04:00
|
|
|
|
|
|
|
<properties>
|
2012-09-24 01:04:57 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.server</bundle-symbolic-name>
|
2012-06-12 15:43:29 -04:00
|
|
|
</properties>
|
|
|
|
|
2013-01-25 14:19:17 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>tests-jar</id>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2012-06-12 15:43:29 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2012-11-23 00:25:31 -05:00
|
|
|
<artifactId>websocket-common</artifactId>
|
2012-11-06 18:58:54 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-06-10 16:48:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2012-11-12 21:42:32 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-servlet</artifactId>
|
2012-06-12 15:43:29 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-08-02 12:08:59 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2012-06-12 15:43:29 -04:00
|
|
|
<dependency>
|
2012-09-06 23:46:51 -04:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2012-06-12 15:43:29 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-http</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2012-06-18 12:48:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-06-12 15:43:29 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|