Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2013-07-30 22:09:40 +0000
committerJoakim Erdfelt2013-07-30 22:09:40 +0000
commit28b3ee8b13a269907dcb80ceee45ab89e4aba2ae (patch)
tree7dfd87fc5e519297886e718938f097b89c4c0f5b /jetty-websocket/websocket-mux-extension/pom.xml
parentb63a6047d3d57b31adf4ea37d45b48abc728b8ad (diff)
downloadorg.eclipse.jetty.project-28b3ee8b13a269907dcb80ceee45ab89e4aba2ae.tar.gz
org.eclipse.jetty.project-28b3ee8b13a269907dcb80ceee45ab89e4aba2ae.tar.xz
org.eclipse.jetty.project-28b3ee8b13a269907dcb80ceee45ab89e4aba2ae.zip
WebSocket - breaking out unfinished MUX extension into its own module
Diffstat (limited to 'jetty-websocket/websocket-mux-extension/pom.xml')
-rw-r--r--jetty-websocket/websocket-mux-extension/pom.xml56
1 files changed, 56 insertions, 0 deletions
diff --git a/jetty-websocket/websocket-mux-extension/pom.xml b/jetty-websocket/websocket-mux-extension/pom.xml
new file mode 100644
index 0000000000..6a7b8675b6
--- /dev/null
+++ b/jetty-websocket/websocket-mux-extension/pom.xml
@@ -0,0 +1,56 @@
+<?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>
+ <version>9.1.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>websocket-mux-extension</artifactId>
+ <name>Jetty :: Websocket :: Mux Extension</name>
+
+ <properties>
+ <bundle-symbolic-name>${project.groupId}.mux</bundle-symbolic-name>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-server</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty.websocket</groupId>
+ <artifactId>websocket-client</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty.websocket</groupId>
+ <artifactId>websocket-server</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <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>
+ <artifactId>maven-jar-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>tests-jar</id>
+ <goals>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>

Back to the top