2013-02-12 18:19:35 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2013-08-14 14:28:32 -04:00
|
|
|
<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">
|
2013-02-12 18:19:35 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-parent</artifactId>
|
2014-02-10 14:48:29 -05:00
|
|
|
<version>9.1.3-SNAPSHOT</version>
|
2013-02-12 18:19:35 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>javax-websocket-server-impl</artifactId>
|
|
|
|
<name>Jetty :: Websocket :: javax.websocket.server :: Server Implementation</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.javax.websocket.server</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2013-03-22 16:17:56 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-02-12 18:19:35 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>javax-websocket-client-impl</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-04-23 14:06:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-02-12 18:19:35 -05:00
|
|
|
<dependency>
|
2013-06-18 16:11:45 -04:00
|
|
|
<groupId>javax.websocket</groupId>
|
2013-02-12 18:19:35 -05:00
|
|
|
<artifactId>javax.websocket-api</artifactId>
|
|
|
|
</dependency>
|
2014-01-08 12:46:15 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-02-12 18:19:35 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-06 12:20:02 -04:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2013-02-12 18:19:35 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2013-08-06 12:20:02 -04:00
|
|
|
<phase>package</phase>
|
2013-02-12 18:19:35 -05:00
|
|
|
<goals>
|
2013-08-06 12:20:02 -04:00
|
|
|
<goal>single</goal>
|
2013-02-12 18:19:35 -05:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2013-08-06 12:20:02 -04:00
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>config</descriptorRef>
|
|
|
|
</descriptorRefs>
|
2013-02-12 18:19:35 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|