diff --git a/aggregates/jetty-all/pom.xml b/aggregates/jetty-all/pom.xml index 0dfad2ed81e..36fbf321ce4 100644 --- a/aggregates/jetty-all/pom.xml +++ b/aggregates/jetty-all/pom.xml @@ -183,7 +183,7 @@ org.eclipse.jetty.websocket - javax-websocket-server-impl + javax-websocket-server ${project.version} diff --git a/aggregates/jetty-websocket-all/pom.xml b/aggregates/jetty-websocket-all/pom.xml index 90c71f63685..d76f32cbeea 100644 --- a/aggregates/jetty-websocket-all/pom.xml +++ b/aggregates/jetty-websocket-all/pom.xml @@ -114,7 +114,7 @@ org.eclipse.jetty.websocket - javax-websocket-server-impl + javax-websocket-server ${project.version} provided diff --git a/examples/embedded/pom.xml b/examples/embedded/pom.xml index be38749121e..d1981634ee4 100644 --- a/examples/embedded/pom.xml +++ b/examples/embedded/pom.xml @@ -52,7 +52,7 @@ org.eclipse.jetty.websocket - javax-websocket-server-impl + javax-websocket-server ${project.version} diff --git a/examples/embedded/src/main/java/org/eclipse/jetty/embedded/WebSocketJsrServer.java b/examples/embedded/src/main/java/org/eclipse/jetty/embedded/WebSocketJsrServer.java index 5173994dc87..d0b16bc65f2 100644 --- a/examples/embedded/src/main/java/org/eclipse/jetty/embedded/WebSocketJsrServer.java +++ b/examples/embedded/src/main/java/org/eclipse/jetty/embedded/WebSocketJsrServer.java @@ -25,7 +25,7 @@ import javax.websocket.server.ServerEndpoint; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.servlet.ServletContextHandler; -import org.eclipse.jetty.websocket.jsr356.server.JavaxWebSocketServerContainerInitializer; +import org.eclipse.jetty.websocket.javax.server.JavaxWebSocketServerContainerInitializer; /** * Example of setting up a javax.websocket server with Jetty embedded diff --git a/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletContainerInitializersStarter.java b/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletContainerInitializersStarter.java index 13dd0348568..ee1ddb8c03a 100644 --- a/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletContainerInitializersStarter.java +++ b/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletContainerInitializersStarter.java @@ -54,7 +54,7 @@ public class ServletContainerInitializersStarter extends AbstractLifeCycle imple List initializers = (List)_context.getAttribute(AnnotationConfiguration.CONTAINER_INITIALIZERS); if (initializers == null) return; - + for (ContainerInitializer i : initializers) { try diff --git a/jetty-bom/pom.xml b/jetty-bom/pom.xml index c8614b288d1..a8c82d10c13 100644 --- a/jetty-bom/pom.xml +++ b/jetty-bom/pom.xml @@ -316,12 +316,12 @@ org.eclipse.jetty.websocket - javax-websocket-client-impl + javax-websocket-client 10.0.0-SNAPSHOT org.eclipse.jetty.websocket - javax-websocket-server-impl + javax-websocket-server 10.0.0-SNAPSHOT diff --git a/jetty-documentation/src/main/asciidoc/administration/startup/startup-base-vs-home.adoc b/jetty-documentation/src/main/asciidoc/administration/startup/startup-base-vs-home.adoc index 93634198870..f6e357ca7f0 100644 --- a/jetty-documentation/src/main/asciidoc/administration/startup/startup-base-vs-home.adoc +++ b/jetty-documentation/src/main/asciidoc/administration/startup/startup-base-vs-home.adoc @@ -189,8 +189,8 @@ Note: order presented here is how they would appear on the classpath. 32: 1.2 | ${jetty.home}/lib/annotations/javax.annotation-api-1.2.jar 33: {VERSION} | ${jetty.home}/lib/jetty-deploy-{VERSION}.jar 34: 1.0 | ${jetty.home}/lib/websocket/javax.websocket-api-1.0.jar -35: {VERSION} | ${jetty.home}/lib/websocket/javax-websocket-client-impl-{VERSION}.jar -36: {VERSION} | ${jetty.home}/lib/websocket/javax-websocket-server-impl-{VERSION}.jar +35: {VERSION} | ${jetty.home}/lib/websocket/javax-websocket-client-{VERSION}.jar +36: {VERSION} | ${jetty.home}/lib/websocket/javax-websocket-server-{VERSION}.jar 37: {VERSION} | ${jetty.home}/lib/websocket/websocket-api-{VERSION}.jar 38: {VERSION} | ${jetty.home}/lib/websocket/websocket-client-{VERSION}.jar 39: {VERSION} | ${jetty.home}/lib/websocket/websocket-common-{VERSION}.jar diff --git a/jetty-documentation/src/main/asciidoc/administration/startup/startup-classpath.adoc b/jetty-documentation/src/main/asciidoc/administration/startup/startup-classpath.adoc index 648664e42f6..516f97640d0 100644 --- a/jetty-documentation/src/main/asciidoc/administration/startup/startup-classpath.adoc +++ b/jetty-documentation/src/main/asciidoc/administration/startup/startup-classpath.adoc @@ -99,8 +99,8 @@ Note: order presented here is how they would appear on the classpath. 32: 1.2 | ${jetty.home}/lib/annotations/javax.annotation-api-1.2.jar 33: {VERSION} | ${jetty.home}/lib/jetty-deploy-{VERSION}.jar 34: 1.0 | ${jetty.home}/lib/websocket/javax.websocket-api-1.0.jar -35: {VERSION} | ${jetty.home}/lib/websocket/javax-websocket-client-impl-{VERSION}.jar -36: {VERSION} | ${jetty.home}/lib/websocket/javax-websocket-server-impl-{VERSION}.jar +35: {VERSION} | ${jetty.home}/lib/websocket/javax-websocket-client-{VERSION}.jar +36: {VERSION} | ${jetty.home}/lib/websocket/javax-websocket-server-{VERSION}.jar 37: {VERSION} | ${jetty.home}/lib/websocket/websocket-api-{VERSION}.jar 38: {VERSION} | ${jetty.home}/lib/websocket/websocket-client-{VERSION}.jar 39: {VERSION} | ${jetty.home}/lib/websocket/websocket-common-{VERSION}.jar diff --git a/jetty-home/pom.xml b/jetty-home/pom.xml index 5a0e6c12012..8f6088832c5 100644 --- a/jetty-home/pom.xml +++ b/jetty-home/pom.xml @@ -595,7 +595,7 @@ org.eclipse.jetty.websocket - javax-websocket-server-impl + javax-websocket-server ${project.version} diff --git a/jetty-maven-plugin/pom.xml b/jetty-maven-plugin/pom.xml index 3e9ec1691e9..37f7cc30c3e 100644 --- a/jetty-maven-plugin/pom.xml +++ b/jetty-maven-plugin/pom.xml @@ -217,7 +217,7 @@ org.eclipse.jetty.websocket - javax-websocket-server-impl + javax-websocket-server ${project.version} diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml index 7b04d9a1c5c..a3327776531 100644 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml +++ b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml @@ -95,7 +95,7 @@ org.eclipse.jetty.plus.webapp.EnvConfiguration org.eclipse.jetty.webapp.JmxConfiguration org.eclipse.jetty.websocket.server.JettyWebSocketConfiguration - org.eclipse.jetty.websocket.jsr356.server.JavaxWebSocketConfiguration + org.eclipse.jetty.websocket.javax.server.JavaxWebSocketConfiguration org.eclipse.jetty.osgi.annotations.AnnotationConfiguration org.eclipse.jetty.osgi.boot.OSGiWebInfConfiguration org.eclipse.jetty.osgi.boot.OSGiMetaInfConfiguration diff --git a/jetty-osgi/test-jetty-osgi/pom.xml b/jetty-osgi/test-jetty-osgi/pom.xml index b18305c5619..aebc75d4ab5 100644 --- a/jetty-osgi/test-jetty-osgi/pom.xml +++ b/jetty-osgi/test-jetty-osgi/pom.xml @@ -14,8 +14,8 @@ ${project.groupId}.boot.test.osgi http://download.eclipse.org/jetty/orbit/ target/distribution - 4.12.0 - 2.5.2 + 4.13.0 + 2.5.4 1.0 @@ -23,38 +23,38 @@ org.ops4j.pax.exam pax-exam - ${exam.version} + ${pax.exam.version} test org.ops4j.pax.exam pax-exam-inject - ${exam.version} + ${pax.exam.version} test org.ops4j.pax.exam pax-exam-container-forked - ${exam.version} + ${pax.exam.version} test org.ops4j.pax.exam pax-exam-junit4 - ${exam.version} + ${pax.exam.version} test org.ops4j.pax.exam pax-exam-link-mvn - ${exam.version} + ${pax.exam.version} test org.ops4j.pax.url pax-url-aether - ${url.version} + ${pax.url.version} test @@ -65,7 +65,7 @@ org.ops4j.pax.url pax-url-wrap - 2.5.4 + ${pax.url.version} test @@ -287,7 +287,7 @@ org.eclipse.jetty.websocket - javax-websocket-client-impl + javax-websocket-client ${project.version} runtime @@ -310,7 +310,7 @@ org.eclipse.jetty.websocket - javax-websocket-server-impl + javax-websocket-server ${project.version} runtime diff --git a/jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-with-custom-class.xml b/jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-with-custom-class.xml index 7227f51f4b5..aa2ab155744 100644 --- a/jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-with-custom-class.xml +++ b/jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-with-custom-class.xml @@ -82,7 +82,7 @@ org.eclipse.jetty.plus.webapp.EnvConfiguration org.eclipse.jetty.webapp.JmxConfiguration org.eclipse.jetty.websocket.server.JettyWebSocketConfiguration - org.eclipse.jetty.websocket.jsr356.server.JavaxWebSocketConfiguration + org.eclipse.jetty.websocket.javax.server.JavaxWebSocketConfiguration org.eclipse.jetty.osgi.annotations.AnnotationConfiguration org.eclipse.jetty.osgi.boot.OSGiWebInfConfiguration org.eclipse.jetty.osgi.boot.OSGiMetaInfConfiguration diff --git a/jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty.xml b/jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty.xml index 4b9342ada64..0c0356f1d27 100644 --- a/jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty.xml +++ b/jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty.xml @@ -85,9 +85,9 @@ org.eclipse.jetty.plus.webapp.PlusConfiguration org.eclipse.jetty.plus.webapp.EnvConfiguration org.eclipse.jetty.webapp.JmxConfiguration - org.eclipse.jetty.websocket.server.JettyWebSocketConfiguration - org.eclipse.jetty.websocket.jsr356.server.JavaxWebSocketConfiguration org.eclipse.jetty.osgi.annotations.AnnotationConfiguration + org.eclipse.jetty.websocket.server.JettyWebSocketConfiguration + org.eclipse.jetty.websocket.javax.server.JavaxWebSocketConfiguration org.eclipse.jetty.osgi.boot.OSGiWebInfConfiguration org.eclipse.jetty.osgi.boot.OSGiMetaInfConfiguration diff --git a/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/test/TestJettyOSGiBootWithJavaxWebSocket.java b/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/test/TestJettyOSGiBootWithJavaxWebSocket.java index 2f26120da88..d3fc0dbe860 100644 --- a/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/test/TestJettyOSGiBootWithJavaxWebSocket.java +++ b/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/test/TestJettyOSGiBootWithJavaxWebSocket.java @@ -48,6 +48,7 @@ import org.osgi.framework.Bundle; import org.osgi.framework.BundleContext; import aQute.bnd.osgi.Constants; +import org.osgi.framework.BundleException; /** * Test using websocket in osgi @@ -64,6 +65,7 @@ public class TestJettyOSGiBootWithJavaxWebSocket public static Option[] configure() { ArrayList