websocket-client should not be needed on osgi server test classpath

This commit is contained in:
Jan Bartel 2013-02-01 11:27:38 +11:00
parent 89d8972e74
commit d5f03ea791
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public class TestJettyOSGiBootCore extends AbstractTestOSGi {
res.add(mavenBundle().groupId( "org.eclipse.jetty.websocket" ).artifactId( "websocket-common" ).versionAsInProject().noStart());
res.add(mavenBundle().groupId( "org.eclipse.jetty.websocket" ).artifactId( "websocket-servlet" ).versionAsInProject().noStart());
res.add(mavenBundle().groupId( "org.eclipse.jetty.websocket" ).artifactId( "websocket-server" ).versionAsInProject().noStart());
res.add(mavenBundle().groupId( "org.eclipse.jetty.websocket" ).artifactId( "websocket-client" ).versionAsInProject().noStart());
return res;
}