Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2014-01-08 17:46:15 +0000
committerJoakim Erdfelt2014-01-08 17:47:45 +0000
commit9df519c40f4dc98d07e5557bd828d5e2e19a23b3 (patch)
treeb2b373fda533b1529b032c686aa211ceddc0d5e6 /jetty-websocket/websocket-client/pom.xml
parent152dfaa2931043d34ab1748e2e92014a6d27c86c (diff)
downloadorg.eclipse.jetty.project-9df519c40f4dc98d07e5557bd828d5e2e19a23b3.tar.gz
org.eclipse.jetty.project-9df519c40f4dc98d07e5557bd828d5e2e19a23b3.tar.xz
org.eclipse.jetty.project-9df519c40f4dc98d07e5557bd828d5e2e19a23b3.zip
423948 - Cleanup and consolidate testing utilities in WebSocket
+ Created websocket-common-tests.jar artifact + Consolidated duplicate code from other websocket-* modules into the websocket-common test artifact
Diffstat (limited to 'jetty-websocket/websocket-client/pom.xml')
-rw-r--r--jetty-websocket/websocket-client/pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/jetty-websocket/websocket-client/pom.xml b/jetty-websocket/websocket-client/pom.xml
index d1f8913669..f1ec34b118 100644
--- a/jetty-websocket/websocket-client/pom.xml
+++ b/jetty-websocket/websocket-client/pom.xml
@@ -31,6 +31,13 @@
<version>${project.version}</version>
</dependency>
<dependency>
+ <groupId>org.eclipse.jetty.websocket</groupId>
+ <artifactId>websocket-common</artifactId>
+ <version>${project.version}</version>
+ <classifier>tests</classifier>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.eclipse.jetty.toolchain</groupId>
<artifactId>jetty-test-helper</artifactId>
<scope>test</scope>

Back to the top