From eb3ad1d2ff53ff22f72bb95d246a5239be7a0bee Mon Sep 17 00:00:00 2001 From: Kalin Chan Date: Mon, 25 Jul 2022 09:50:01 +0100 Subject: [PATCH 1/3] FISH-6072 Add null check --- .../tyrus/servlet/TyrusServletContainerInitializer.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/containers/servlet/src/main/java/org/glassfish/tyrus/servlet/TyrusServletContainerInitializer.java b/containers/servlet/src/main/java/org/glassfish/tyrus/servlet/TyrusServletContainerInitializer.java index 9ed851cc..1aeeaab4 100755 --- a/containers/servlet/src/main/java/org/glassfish/tyrus/servlet/TyrusServletContainerInitializer.java +++ b/containers/servlet/src/main/java/org/glassfish/tyrus/servlet/TyrusServletContainerInitializer.java @@ -76,6 +76,11 @@ public void onStartup(Set> classes, final ServletContext ctx) throws Se return; } + if (ctx.getAttribute(ServerContainer.class.getName()) != null) { + // Already initialized + return; + } + classes.removeAll(FILTERED_CLASSES); final Integer incomingBufferSize = getIntContextParam(ctx, TyrusHttpUpgradeHandler.FRAME_BUFFER_SIZE); From b3e97383778bc1849b26622282132ed858194a76 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Fri, 8 Sep 2023 11:30:32 +0100 Subject: [PATCH 2/3] Set version to 2.1.3.payara-p1 Signed-off-by: Andrew Pielage --- archetypes/echo/pom.xml | 2 +- archetypes/pom.xml | 2 +- bom/pom.xml | 2 +- bundles/client-jdk/pom.xml | 2 +- bundles/client/pom.xml | 2 +- bundles/pom.xml | 2 +- bundles/samples/pom.xml | 2 +- bundles/websocket-ri-archive/pom.xml | 2 +- bundles/websocket-ri-bundle/pom.xml | 2 +- client/pom.xml | 2 +- containers/glassfish/cdi/pom.xml | 2 +- containers/glassfish/ejb/pom.xml | 2 +- containers/glassfish/pom.xml | 2 +- containers/grizzly-client/pom.xml | 2 +- containers/grizzly-server/pom.xml | 2 +- containers/inmemory/pom.xml | 2 +- containers/jdk-client/pom.xml | 2 +- containers/pom.xml | 2 +- containers/servlet/pom.xml | 2 +- core/pom.xml | 2 +- docs/pom.xml | 2 +- ext/client-cli/pom.xml | 2 +- ext/client-java8/pom.xml | 2 +- ext/extension-deflate/pom.xml | 2 +- ext/monitoring-jmx/pom.xml | 2 +- ext/pom.xml | 2 +- pom.xml | 2 +- samples/auction/pom.xml | 2 +- samples/cdi/pom.xml | 2 +- samples/chat/pom.xml | 2 +- samples/draw/pom.xml | 2 +- samples/echo-basic-auth/pom.xml | 2 +- samples/echo-https/pom.xml | 2 +- samples/echo/pom.xml | 2 +- samples/pom.xml | 2 +- samples/programmatic-echo/pom.xml | 2 +- samples/shared-collection/pom.xml | 2 +- samples/simplelife/pom.xml | 2 +- server/pom.xml | 2 +- spi/pom.xml | 2 +- tests/containers/jdk-client/pom.xml | 2 +- tests/containers/pom.xml | 2 +- tests/containers/servlet/pom.xml | 2 +- tests/e2e/application-config/pom.xml | 2 +- tests/e2e/jdk8/pom.xml | 2 +- tests/e2e/jetty/auth-basic/pom.xml | 2 +- tests/e2e/jetty/auth-digest/pom.xml | 2 +- tests/e2e/jetty/pom.xml | 2 +- tests/e2e/non-deployable/pom.xml | 2 +- tests/e2e/pom.xml | 2 +- tests/e2e/standard-config/pom.xml | 2 +- tests/pom.xml | 2 +- tests/qa/browser-test/pom.xml | 2 +- tests/qa/lifecycle-test/pom.xml | 2 +- tests/qa/pom.xml | 2 +- tests/servlet/async/pom.xml | 2 +- tests/servlet/autobahn-server/pom.xml | 2 +- tests/servlet/basic/pom.xml | 2 +- tests/servlet/debug/pom.xml | 2 +- tests/servlet/dynamic-deploy/pom.xml | 2 +- tests/servlet/embedded-glassfish-test/pom.xml | 2 +- tests/servlet/inject/pom.xml | 2 +- tests/servlet/maxsessions-per-app/pom.xml | 2 +- tests/servlet/maxsessions-per-remoteaddr/pom.xml | 2 +- tests/servlet/mbean/pom.xml | 2 +- tests/servlet/noappconfig/pom.xml | 2 +- tests/servlet/oneappconfig/pom.xml | 2 +- tests/servlet/pom.xml | 2 +- tests/servlet/remote-endpoint-timeout/pom.xml | 2 +- tests/servlet/session/pom.xml | 2 +- tests/servlet/twoappconfig/pom.xml | 2 +- tests/tools/pom.xml | 2 +- 72 files changed, 72 insertions(+), 72 deletions(-) diff --git a/archetypes/echo/pom.xml b/archetypes/echo/pom.xml index 4dcef700..c056a194 100644 --- a/archetypes/echo/pom.xml +++ b/archetypes/echo/pom.xml @@ -21,7 +21,7 @@ org.glassfish.tyrus.archetypes tyrus-archetypes-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/archetypes/pom.xml b/archetypes/pom.xml index fc06e5b4..34759c83 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 org.glassfish.tyrus.archetypes diff --git a/bom/pom.xml b/bom/pom.xml index 0e30e1d7..4d410642 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -29,7 +29,7 @@ org.glassfish.tyrus tyrus-bom - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 pom Tyrus BOM diff --git a/bundles/client-jdk/pom.xml b/bundles/client-jdk/pom.xml index 9be79528..f5b77b8f 100644 --- a/bundles/client-jdk/pom.xml +++ b/bundles/client-jdk/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/bundles/client/pom.xml b/bundles/client/pom.xml index e723ceef..8b941b11 100644 --- a/bundles/client/pom.xml +++ b/bundles/client/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/bundles/pom.xml b/bundles/pom.xml index 4ca41348..6e3f941b 100644 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -24,7 +24,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 org.glassfish.tyrus.bundles diff --git a/bundles/samples/pom.xml b/bundles/samples/pom.xml index c9ad27d3..f0d05893 100644 --- a/bundles/samples/pom.xml +++ b/bundles/samples/pom.xml @@ -24,7 +24,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 tyrus-samples diff --git a/bundles/websocket-ri-archive/pom.xml b/bundles/websocket-ri-archive/pom.xml index 07797200..dfd7838d 100755 --- a/bundles/websocket-ri-archive/pom.xml +++ b/bundles/websocket-ri-archive/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 websocket-ri-archive diff --git a/bundles/websocket-ri-bundle/pom.xml b/bundles/websocket-ri-bundle/pom.xml index 1f0858d8..b5853ec2 100755 --- a/bundles/websocket-ri-bundle/pom.xml +++ b/bundles/websocket-ri-bundle/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 websocket-ri-bundle diff --git a/client/pom.xml b/client/pom.xml index a16774c3..78599bcf 100755 --- a/client/pom.xml +++ b/client/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/containers/glassfish/cdi/pom.xml b/containers/glassfish/cdi/pom.xml index 51457d6a..7c7d41ab 100755 --- a/containers/glassfish/cdi/pom.xml +++ b/containers/glassfish/cdi/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-glassfish-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 bundle diff --git a/containers/glassfish/ejb/pom.xml b/containers/glassfish/ejb/pom.xml index 946cbf7c..50e361db 100755 --- a/containers/glassfish/ejb/pom.xml +++ b/containers/glassfish/ejb/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-glassfish-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 bundle diff --git a/containers/glassfish/pom.xml b/containers/glassfish/pom.xml index baf8b140..97afd8f5 100755 --- a/containers/glassfish/pom.xml +++ b/containers/glassfish/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/containers/grizzly-client/pom.xml b/containers/grizzly-client/pom.xml index 33846f79..3aadda8a 100755 --- a/containers/grizzly-client/pom.xml +++ b/containers/grizzly-client/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 bundle diff --git a/containers/grizzly-server/pom.xml b/containers/grizzly-server/pom.xml index a0b1b0dd..de09e921 100755 --- a/containers/grizzly-server/pom.xml +++ b/containers/grizzly-server/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 bundle diff --git a/containers/inmemory/pom.xml b/containers/inmemory/pom.xml index 0a9a0650..fef45ea8 100644 --- a/containers/inmemory/pom.xml +++ b/containers/inmemory/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 bundle diff --git a/containers/jdk-client/pom.xml b/containers/jdk-client/pom.xml index d2e833e6..6e04b3ca 100755 --- a/containers/jdk-client/pom.xml +++ b/containers/jdk-client/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 bundle diff --git a/containers/pom.xml b/containers/pom.xml index 3373ba43..caabcd48 100755 --- a/containers/pom.xml +++ b/containers/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/containers/servlet/pom.xml b/containers/servlet/pom.xml index 946830db..0bfccdbf 100755 --- a/containers/servlet/pom.xml +++ b/containers/servlet/pom.xml @@ -21,7 +21,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 57703354..6a8c3c5e 100755 --- a/core/pom.xml +++ b/core/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/docs/pom.xml b/docs/pom.xml index 6f471c6b..a1a4ecaa 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 tyrus-documentation diff --git a/ext/client-cli/pom.xml b/ext/client-cli/pom.xml index 450fbb6f..08326e14 100644 --- a/ext/client-cli/pom.xml +++ b/ext/client-cli/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.ext tyrus-extensions-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/ext/client-java8/pom.xml b/ext/client-java8/pom.xml index 1f18ae79..bdfc459e 100644 --- a/ext/client-java8/pom.xml +++ b/ext/client-java8/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.ext tyrus-extensions-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/ext/extension-deflate/pom.xml b/ext/extension-deflate/pom.xml index 20995a35..ce9386cb 100644 --- a/ext/extension-deflate/pom.xml +++ b/ext/extension-deflate/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.ext tyrus-extensions-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/ext/monitoring-jmx/pom.xml b/ext/monitoring-jmx/pom.xml index da9d5a7f..e09bbb87 100644 --- a/ext/monitoring-jmx/pom.xml +++ b/ext/monitoring-jmx/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.ext tyrus-extensions-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 tyrus-monitoring-jmx diff --git a/ext/pom.xml b/ext/pom.xml index 5de0f857..00eb72cc 100644 --- a/ext/pom.xml +++ b/ext/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/pom.xml b/pom.xml index 43008f7c..c99d7e42 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 pom tyrus Tyrus is the reference implementation of Java API for WebSocket (JSR-356) diff --git a/samples/auction/pom.xml b/samples/auction/pom.xml index 53641d22..e16bfdb9 100755 --- a/samples/auction/pom.xml +++ b/samples/auction/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/samples/cdi/pom.xml b/samples/cdi/pom.xml index 98187751..18ae3a5e 100755 --- a/samples/cdi/pom.xml +++ b/samples/cdi/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/samples/chat/pom.xml b/samples/chat/pom.xml index 80426c27..9e8162d8 100755 --- a/samples/chat/pom.xml +++ b/samples/chat/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/samples/draw/pom.xml b/samples/draw/pom.xml index bb5a3942..d49dccb0 100755 --- a/samples/draw/pom.xml +++ b/samples/draw/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/samples/echo-basic-auth/pom.xml b/samples/echo-basic-auth/pom.xml index f87345be..3f190f87 100755 --- a/samples/echo-basic-auth/pom.xml +++ b/samples/echo-basic-auth/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/samples/echo-https/pom.xml b/samples/echo-https/pom.xml index dd3e2a8b..75276439 100755 --- a/samples/echo-https/pom.xml +++ b/samples/echo-https/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/samples/echo/pom.xml b/samples/echo/pom.xml index f8e52935..e3328991 100755 --- a/samples/echo/pom.xml +++ b/samples/echo/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/samples/pom.xml b/samples/pom.xml index d20a1821..3ea8dcef 100755 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -17,7 +17,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 org.glassfish.tyrus.samples diff --git a/samples/programmatic-echo/pom.xml b/samples/programmatic-echo/pom.xml index 9353cf23..55912799 100755 --- a/samples/programmatic-echo/pom.xml +++ b/samples/programmatic-echo/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/samples/shared-collection/pom.xml b/samples/shared-collection/pom.xml index 167d0ac9..d0928a64 100644 --- a/samples/shared-collection/pom.xml +++ b/samples/shared-collection/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/samples/simplelife/pom.xml b/samples/simplelife/pom.xml index e21c6c87..6a852e87 100755 --- a/samples/simplelife/pom.xml +++ b/samples/simplelife/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/server/pom.xml b/server/pom.xml index cff5df05..8c3ade93 100755 --- a/server/pom.xml +++ b/server/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/spi/pom.xml b/spi/pom.xml index a2040b4e..a8dca133 100755 --- a/spi/pom.xml +++ b/spi/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/tests/containers/jdk-client/pom.xml b/tests/containers/jdk-client/pom.xml index 3881d475..9875391b 100644 --- a/tests/containers/jdk-client/pom.xml +++ b/tests/containers/jdk-client/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-containers - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/containers/pom.xml b/tests/containers/pom.xml index 1b029041..1e07412b 100644 --- a/tests/containers/pom.xml +++ b/tests/containers/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 pom diff --git a/tests/containers/servlet/pom.xml b/tests/containers/servlet/pom.xml index 09dfc6c4..3f4a4951 100644 --- a/tests/containers/servlet/pom.xml +++ b/tests/containers/servlet/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-containers - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/e2e/application-config/pom.xml b/tests/e2e/application-config/pom.xml index a7ebe0d7..effb6639 100755 --- a/tests/e2e/application-config/pom.xml +++ b/tests/e2e/application-config/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/e2e/jdk8/pom.xml b/tests/e2e/jdk8/pom.xml index 2cd57c72..e7768f25 100644 --- a/tests/e2e/jdk8/pom.xml +++ b/tests/e2e/jdk8/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/e2e/jetty/auth-basic/pom.xml b/tests/e2e/jetty/auth-basic/pom.xml index f68d2c95..676bd1e7 100644 --- a/tests/e2e/jetty/auth-basic/pom.xml +++ b/tests/e2e/jetty/auth-basic/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e-jetty - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 jar diff --git a/tests/e2e/jetty/auth-digest/pom.xml b/tests/e2e/jetty/auth-digest/pom.xml index 7f53fca2..01f7a88b 100644 --- a/tests/e2e/jetty/auth-digest/pom.xml +++ b/tests/e2e/jetty/auth-digest/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e-jetty - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 jar diff --git a/tests/e2e/jetty/pom.xml b/tests/e2e/jetty/pom.xml index 3fdb9c9e..977ae9ed 100755 --- a/tests/e2e/jetty/pom.xml +++ b/tests/e2e/jetty/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 pom diff --git a/tests/e2e/non-deployable/pom.xml b/tests/e2e/non-deployable/pom.xml index 860c5271..1931f823 100755 --- a/tests/e2e/non-deployable/pom.xml +++ b/tests/e2e/non-deployable/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/e2e/pom.xml b/tests/e2e/pom.xml index 185ebb59..340d0aa1 100755 --- a/tests/e2e/pom.xml +++ b/tests/e2e/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 pom diff --git a/tests/e2e/standard-config/pom.xml b/tests/e2e/standard-config/pom.xml index 552a7c67..f61abc12 100755 --- a/tests/e2e/standard-config/pom.xml +++ b/tests/e2e/standard-config/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/pom.xml b/tests/pom.xml index 06d34827..f05f6547 100755 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 org.glassfish.tyrus.tests diff --git a/tests/qa/browser-test/pom.xml b/tests/qa/browser-test/pom.xml index c0973ada..b72133d1 100755 --- a/tests/qa/browser-test/pom.xml +++ b/tests/qa/browser-test/pom.xml @@ -21,7 +21,7 @@ org.glassfish.tyrus.tests.qa tyrus-tests-qa-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/qa/lifecycle-test/pom.xml b/tests/qa/lifecycle-test/pom.xml index c02fd5dc..e85eee52 100644 --- a/tests/qa/lifecycle-test/pom.xml +++ b/tests/qa/lifecycle-test/pom.xml @@ -21,7 +21,7 @@ org.glassfish.tyrus.tests.qa tyrus-tests-qa-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/qa/pom.xml b/tests/qa/pom.xml index 1f269b2f..8a8ece24 100644 --- a/tests/qa/pom.xml +++ b/tests/qa/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 org.glassfish.tyrus.tests.qa diff --git a/tests/servlet/async/pom.xml b/tests/servlet/async/pom.xml index 8bbb5bd7..41587b06 100644 --- a/tests/servlet/async/pom.xml +++ b/tests/servlet/async/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/autobahn-server/pom.xml b/tests/servlet/autobahn-server/pom.xml index d932dbac..cb1cfd8c 100644 --- a/tests/servlet/autobahn-server/pom.xml +++ b/tests/servlet/autobahn-server/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/basic/pom.xml b/tests/servlet/basic/pom.xml index 9fe03b63..c30e33ff 100644 --- a/tests/servlet/basic/pom.xml +++ b/tests/servlet/basic/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/debug/pom.xml b/tests/servlet/debug/pom.xml index 406855c2..d0655756 100644 --- a/tests/servlet/debug/pom.xml +++ b/tests/servlet/debug/pom.xml @@ -20,7 +20,7 @@ tyrus-tests-servlet-project org.glassfish.tyrus.tests.servlet - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 diff --git a/tests/servlet/dynamic-deploy/pom.xml b/tests/servlet/dynamic-deploy/pom.xml index 52257aa7..046cc036 100644 --- a/tests/servlet/dynamic-deploy/pom.xml +++ b/tests/servlet/dynamic-deploy/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/embedded-glassfish-test/pom.xml b/tests/servlet/embedded-glassfish-test/pom.xml index 3c14c37e..4358ae60 100644 --- a/tests/servlet/embedded-glassfish-test/pom.xml +++ b/tests/servlet/embedded-glassfish-test/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/inject/pom.xml b/tests/servlet/inject/pom.xml index f05a4b3e..307e475a 100644 --- a/tests/servlet/inject/pom.xml +++ b/tests/servlet/inject/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/maxsessions-per-app/pom.xml b/tests/servlet/maxsessions-per-app/pom.xml index 1c80d929..63b4ec57 100755 --- a/tests/servlet/maxsessions-per-app/pom.xml +++ b/tests/servlet/maxsessions-per-app/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/maxsessions-per-remoteaddr/pom.xml b/tests/servlet/maxsessions-per-remoteaddr/pom.xml index 4ca1a530..d1bb37a0 100755 --- a/tests/servlet/maxsessions-per-remoteaddr/pom.xml +++ b/tests/servlet/maxsessions-per-remoteaddr/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/mbean/pom.xml b/tests/servlet/mbean/pom.xml index e262f522..2b066aea 100644 --- a/tests/servlet/mbean/pom.xml +++ b/tests/servlet/mbean/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/noappconfig/pom.xml b/tests/servlet/noappconfig/pom.xml index f3984edf..32ecbd1a 100755 --- a/tests/servlet/noappconfig/pom.xml +++ b/tests/servlet/noappconfig/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/oneappconfig/pom.xml b/tests/servlet/oneappconfig/pom.xml index 5f1b6046..bfeb428d 100755 --- a/tests/servlet/oneappconfig/pom.xml +++ b/tests/servlet/oneappconfig/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/pom.xml b/tests/servlet/pom.xml index 96274d8f..df1ae56a 100755 --- a/tests/servlet/pom.xml +++ b/tests/servlet/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 org.glassfish.tyrus.tests.servlet diff --git a/tests/servlet/remote-endpoint-timeout/pom.xml b/tests/servlet/remote-endpoint-timeout/pom.xml index e5740d1a..6952439d 100755 --- a/tests/servlet/remote-endpoint-timeout/pom.xml +++ b/tests/servlet/remote-endpoint-timeout/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/session/pom.xml b/tests/servlet/session/pom.xml index fe1f97ad..a71026e5 100755 --- a/tests/servlet/session/pom.xml +++ b/tests/servlet/session/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/servlet/twoappconfig/pom.xml b/tests/servlet/twoappconfig/pom.xml index c54c4962..aa60fc17 100755 --- a/tests/servlet/twoappconfig/pom.xml +++ b/tests/servlet/twoappconfig/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 war diff --git a/tests/tools/pom.xml b/tests/tools/pom.xml index 57670aa5..dd7295c8 100755 --- a/tests/tools/pom.xml +++ b/tests/tools/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1-SNAPSHOT + 2.1.3.payara-p1 4.0.0 From a7e808ae7588af6434c6df31cb4ad6dfd2074110 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Fri, 8 Sep 2023 11:30:53 +0100 Subject: [PATCH 3/3] Set version to 2.1.3.payara-p2-SNAPSHOT Signed-off-by: Andrew Pielage --- archetypes/echo/pom.xml | 2 +- archetypes/pom.xml | 2 +- bom/pom.xml | 2 +- bundles/client-jdk/pom.xml | 2 +- bundles/client/pom.xml | 2 +- bundles/pom.xml | 2 +- bundles/samples/pom.xml | 2 +- bundles/websocket-ri-archive/pom.xml | 2 +- bundles/websocket-ri-bundle/pom.xml | 2 +- client/pom.xml | 2 +- containers/glassfish/cdi/pom.xml | 2 +- containers/glassfish/ejb/pom.xml | 2 +- containers/glassfish/pom.xml | 2 +- containers/grizzly-client/pom.xml | 2 +- containers/grizzly-server/pom.xml | 2 +- containers/inmemory/pom.xml | 2 +- containers/jdk-client/pom.xml | 2 +- containers/pom.xml | 2 +- containers/servlet/pom.xml | 2 +- core/pom.xml | 2 +- docs/pom.xml | 2 +- ext/client-cli/pom.xml | 2 +- ext/client-java8/pom.xml | 2 +- ext/extension-deflate/pom.xml | 2 +- ext/monitoring-jmx/pom.xml | 2 +- ext/pom.xml | 2 +- pom.xml | 2 +- samples/auction/pom.xml | 2 +- samples/cdi/pom.xml | 2 +- samples/chat/pom.xml | 2 +- samples/draw/pom.xml | 2 +- samples/echo-basic-auth/pom.xml | 2 +- samples/echo-https/pom.xml | 2 +- samples/echo/pom.xml | 2 +- samples/pom.xml | 2 +- samples/programmatic-echo/pom.xml | 2 +- samples/shared-collection/pom.xml | 2 +- samples/simplelife/pom.xml | 2 +- server/pom.xml | 2 +- spi/pom.xml | 2 +- tests/containers/jdk-client/pom.xml | 2 +- tests/containers/pom.xml | 2 +- tests/containers/servlet/pom.xml | 2 +- tests/e2e/application-config/pom.xml | 2 +- tests/e2e/jdk8/pom.xml | 2 +- tests/e2e/jetty/auth-basic/pom.xml | 2 +- tests/e2e/jetty/auth-digest/pom.xml | 2 +- tests/e2e/jetty/pom.xml | 2 +- tests/e2e/non-deployable/pom.xml | 2 +- tests/e2e/pom.xml | 2 +- tests/e2e/standard-config/pom.xml | 2 +- tests/pom.xml | 2 +- tests/qa/browser-test/pom.xml | 2 +- tests/qa/lifecycle-test/pom.xml | 2 +- tests/qa/pom.xml | 2 +- tests/servlet/async/pom.xml | 2 +- tests/servlet/autobahn-server/pom.xml | 2 +- tests/servlet/basic/pom.xml | 2 +- tests/servlet/debug/pom.xml | 2 +- tests/servlet/dynamic-deploy/pom.xml | 2 +- tests/servlet/embedded-glassfish-test/pom.xml | 2 +- tests/servlet/inject/pom.xml | 2 +- tests/servlet/maxsessions-per-app/pom.xml | 2 +- tests/servlet/maxsessions-per-remoteaddr/pom.xml | 2 +- tests/servlet/mbean/pom.xml | 2 +- tests/servlet/noappconfig/pom.xml | 2 +- tests/servlet/oneappconfig/pom.xml | 2 +- tests/servlet/pom.xml | 2 +- tests/servlet/remote-endpoint-timeout/pom.xml | 2 +- tests/servlet/session/pom.xml | 2 +- tests/servlet/twoappconfig/pom.xml | 2 +- tests/tools/pom.xml | 2 +- 72 files changed, 72 insertions(+), 72 deletions(-) diff --git a/archetypes/echo/pom.xml b/archetypes/echo/pom.xml index c056a194..7b1416c9 100644 --- a/archetypes/echo/pom.xml +++ b/archetypes/echo/pom.xml @@ -21,7 +21,7 @@ org.glassfish.tyrus.archetypes tyrus-archetypes-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 34759c83..b24d46d2 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT org.glassfish.tyrus.archetypes diff --git a/bom/pom.xml b/bom/pom.xml index 4d410642..c626911e 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -29,7 +29,7 @@ org.glassfish.tyrus tyrus-bom - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT pom Tyrus BOM diff --git a/bundles/client-jdk/pom.xml b/bundles/client-jdk/pom.xml index f5b77b8f..ce99849a 100644 --- a/bundles/client-jdk/pom.xml +++ b/bundles/client-jdk/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/bundles/client/pom.xml b/bundles/client/pom.xml index 8b941b11..f7fcdcaa 100644 --- a/bundles/client/pom.xml +++ b/bundles/client/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/bundles/pom.xml b/bundles/pom.xml index 6e3f941b..732f9a3f 100644 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -24,7 +24,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT org.glassfish.tyrus.bundles diff --git a/bundles/samples/pom.xml b/bundles/samples/pom.xml index f0d05893..7bd624bc 100644 --- a/bundles/samples/pom.xml +++ b/bundles/samples/pom.xml @@ -24,7 +24,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT tyrus-samples diff --git a/bundles/websocket-ri-archive/pom.xml b/bundles/websocket-ri-archive/pom.xml index dfd7838d..e5e396a0 100755 --- a/bundles/websocket-ri-archive/pom.xml +++ b/bundles/websocket-ri-archive/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT websocket-ri-archive diff --git a/bundles/websocket-ri-bundle/pom.xml b/bundles/websocket-ri-bundle/pom.xml index b5853ec2..2de52e0c 100755 --- a/bundles/websocket-ri-bundle/pom.xml +++ b/bundles/websocket-ri-bundle/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.bundles tyrus-bundles - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT websocket-ri-bundle diff --git a/client/pom.xml b/client/pom.xml index 78599bcf..f793e802 100755 --- a/client/pom.xml +++ b/client/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/containers/glassfish/cdi/pom.xml b/containers/glassfish/cdi/pom.xml index 7c7d41ab..787ab47c 100755 --- a/containers/glassfish/cdi/pom.xml +++ b/containers/glassfish/cdi/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-glassfish-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT bundle diff --git a/containers/glassfish/ejb/pom.xml b/containers/glassfish/ejb/pom.xml index 50e361db..5c007863 100755 --- a/containers/glassfish/ejb/pom.xml +++ b/containers/glassfish/ejb/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-glassfish-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT bundle diff --git a/containers/glassfish/pom.xml b/containers/glassfish/pom.xml index 97afd8f5..4af48e40 100755 --- a/containers/glassfish/pom.xml +++ b/containers/glassfish/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/containers/grizzly-client/pom.xml b/containers/grizzly-client/pom.xml index 3aadda8a..9ae03c5e 100755 --- a/containers/grizzly-client/pom.xml +++ b/containers/grizzly-client/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT bundle diff --git a/containers/grizzly-server/pom.xml b/containers/grizzly-server/pom.xml index de09e921..756f98db 100755 --- a/containers/grizzly-server/pom.xml +++ b/containers/grizzly-server/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT bundle diff --git a/containers/inmemory/pom.xml b/containers/inmemory/pom.xml index fef45ea8..95015e3b 100644 --- a/containers/inmemory/pom.xml +++ b/containers/inmemory/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT bundle diff --git a/containers/jdk-client/pom.xml b/containers/jdk-client/pom.xml index 6e04b3ca..1b59f5a9 100755 --- a/containers/jdk-client/pom.xml +++ b/containers/jdk-client/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT bundle diff --git a/containers/pom.xml b/containers/pom.xml index caabcd48..fc629b2c 100755 --- a/containers/pom.xml +++ b/containers/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/containers/servlet/pom.xml b/containers/servlet/pom.xml index 0bfccdbf..361bb042 100755 --- a/containers/servlet/pom.xml +++ b/containers/servlet/pom.xml @@ -21,7 +21,7 @@ org.glassfish.tyrus tyrus-containers-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 6a8c3c5e..0aaef6ab 100755 --- a/core/pom.xml +++ b/core/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/docs/pom.xml b/docs/pom.xml index a1a4ecaa..cecd089e 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT tyrus-documentation diff --git a/ext/client-cli/pom.xml b/ext/client-cli/pom.xml index 08326e14..9a566635 100644 --- a/ext/client-cli/pom.xml +++ b/ext/client-cli/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.ext tyrus-extensions-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/ext/client-java8/pom.xml b/ext/client-java8/pom.xml index bdfc459e..9d414e43 100644 --- a/ext/client-java8/pom.xml +++ b/ext/client-java8/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.ext tyrus-extensions-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/ext/extension-deflate/pom.xml b/ext/extension-deflate/pom.xml index ce9386cb..6ce5a9ab 100644 --- a/ext/extension-deflate/pom.xml +++ b/ext/extension-deflate/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.ext tyrus-extensions-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/ext/monitoring-jmx/pom.xml b/ext/monitoring-jmx/pom.xml index e09bbb87..bd7521c7 100644 --- a/ext/monitoring-jmx/pom.xml +++ b/ext/monitoring-jmx/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.ext tyrus-extensions-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT tyrus-monitoring-jmx diff --git a/ext/pom.xml b/ext/pom.xml index 00eb72cc..d2c5d31d 100644 --- a/ext/pom.xml +++ b/ext/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index c99d7e42..03e274ba 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT pom tyrus Tyrus is the reference implementation of Java API for WebSocket (JSR-356) diff --git a/samples/auction/pom.xml b/samples/auction/pom.xml index e16bfdb9..9e55df05 100755 --- a/samples/auction/pom.xml +++ b/samples/auction/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/samples/cdi/pom.xml b/samples/cdi/pom.xml index 18ae3a5e..789133f1 100755 --- a/samples/cdi/pom.xml +++ b/samples/cdi/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/samples/chat/pom.xml b/samples/chat/pom.xml index 9e8162d8..2722bda5 100755 --- a/samples/chat/pom.xml +++ b/samples/chat/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/samples/draw/pom.xml b/samples/draw/pom.xml index d49dccb0..27c41548 100755 --- a/samples/draw/pom.xml +++ b/samples/draw/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/samples/echo-basic-auth/pom.xml b/samples/echo-basic-auth/pom.xml index 3f190f87..35076c91 100755 --- a/samples/echo-basic-auth/pom.xml +++ b/samples/echo-basic-auth/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/samples/echo-https/pom.xml b/samples/echo-https/pom.xml index 75276439..de53e59f 100755 --- a/samples/echo-https/pom.xml +++ b/samples/echo-https/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/samples/echo/pom.xml b/samples/echo/pom.xml index e3328991..59014a3a 100755 --- a/samples/echo/pom.xml +++ b/samples/echo/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/samples/pom.xml b/samples/pom.xml index 3ea8dcef..d97b3085 100755 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -17,7 +17,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT org.glassfish.tyrus.samples diff --git a/samples/programmatic-echo/pom.xml b/samples/programmatic-echo/pom.xml index 55912799..90b90fcd 100755 --- a/samples/programmatic-echo/pom.xml +++ b/samples/programmatic-echo/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/samples/shared-collection/pom.xml b/samples/shared-collection/pom.xml index d0928a64..40c3b8cb 100644 --- a/samples/shared-collection/pom.xml +++ b/samples/shared-collection/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/samples/simplelife/pom.xml b/samples/simplelife/pom.xml index 6a852e87..011e0e1f 100755 --- a/samples/simplelife/pom.xml +++ b/samples/simplelife/pom.xml @@ -16,7 +16,7 @@ org.glassfish.tyrus.samples tyrus-samples-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/server/pom.xml b/server/pom.xml index 8c3ade93..9f3cc7c3 100755 --- a/server/pom.xml +++ b/server/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/spi/pom.xml b/spi/pom.xml index a8dca133..603daf79 100755 --- a/spi/pom.xml +++ b/spi/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/tests/containers/jdk-client/pom.xml b/tests/containers/jdk-client/pom.xml index 9875391b..a6dc45d2 100644 --- a/tests/containers/jdk-client/pom.xml +++ b/tests/containers/jdk-client/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-containers - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/containers/pom.xml b/tests/containers/pom.xml index 1e07412b..d1fa2194 100644 --- a/tests/containers/pom.xml +++ b/tests/containers/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT pom diff --git a/tests/containers/servlet/pom.xml b/tests/containers/servlet/pom.xml index 3f4a4951..426b254a 100644 --- a/tests/containers/servlet/pom.xml +++ b/tests/containers/servlet/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-containers - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/e2e/application-config/pom.xml b/tests/e2e/application-config/pom.xml index effb6639..ea7f7ef0 100755 --- a/tests/e2e/application-config/pom.xml +++ b/tests/e2e/application-config/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/e2e/jdk8/pom.xml b/tests/e2e/jdk8/pom.xml index e7768f25..8db872cb 100644 --- a/tests/e2e/jdk8/pom.xml +++ b/tests/e2e/jdk8/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/e2e/jetty/auth-basic/pom.xml b/tests/e2e/jetty/auth-basic/pom.xml index 676bd1e7..7c8d10b3 100644 --- a/tests/e2e/jetty/auth-basic/pom.xml +++ b/tests/e2e/jetty/auth-basic/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e-jetty - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT jar diff --git a/tests/e2e/jetty/auth-digest/pom.xml b/tests/e2e/jetty/auth-digest/pom.xml index 01f7a88b..94ff62d2 100644 --- a/tests/e2e/jetty/auth-digest/pom.xml +++ b/tests/e2e/jetty/auth-digest/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e-jetty - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT jar diff --git a/tests/e2e/jetty/pom.xml b/tests/e2e/jetty/pom.xml index 977ae9ed..1db18a1e 100755 --- a/tests/e2e/jetty/pom.xml +++ b/tests/e2e/jetty/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT pom diff --git a/tests/e2e/non-deployable/pom.xml b/tests/e2e/non-deployable/pom.xml index 1931f823..e1369c03 100755 --- a/tests/e2e/non-deployable/pom.xml +++ b/tests/e2e/non-deployable/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/e2e/pom.xml b/tests/e2e/pom.xml index 340d0aa1..672ac0c4 100755 --- a/tests/e2e/pom.xml +++ b/tests/e2e/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT pom diff --git a/tests/e2e/standard-config/pom.xml b/tests/e2e/standard-config/pom.xml index f61abc12..643f7632 100755 --- a/tests/e2e/standard-config/pom.xml +++ b/tests/e2e/standard-config/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-e2e - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/pom.xml b/tests/pom.xml index f05f6547..b820ce69 100755 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus tyrus-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT org.glassfish.tyrus.tests diff --git a/tests/qa/browser-test/pom.xml b/tests/qa/browser-test/pom.xml index b72133d1..15720a77 100755 --- a/tests/qa/browser-test/pom.xml +++ b/tests/qa/browser-test/pom.xml @@ -21,7 +21,7 @@ org.glassfish.tyrus.tests.qa tyrus-tests-qa-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/qa/lifecycle-test/pom.xml b/tests/qa/lifecycle-test/pom.xml index e85eee52..d292c50c 100644 --- a/tests/qa/lifecycle-test/pom.xml +++ b/tests/qa/lifecycle-test/pom.xml @@ -21,7 +21,7 @@ org.glassfish.tyrus.tests.qa tyrus-tests-qa-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/qa/pom.xml b/tests/qa/pom.xml index 8a8ece24..8e26c42b 100644 --- a/tests/qa/pom.xml +++ b/tests/qa/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT org.glassfish.tyrus.tests.qa diff --git a/tests/servlet/async/pom.xml b/tests/servlet/async/pom.xml index 41587b06..df8faaa9 100644 --- a/tests/servlet/async/pom.xml +++ b/tests/servlet/async/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/autobahn-server/pom.xml b/tests/servlet/autobahn-server/pom.xml index cb1cfd8c..51acc29e 100644 --- a/tests/servlet/autobahn-server/pom.xml +++ b/tests/servlet/autobahn-server/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/basic/pom.xml b/tests/servlet/basic/pom.xml index c30e33ff..a06295e5 100644 --- a/tests/servlet/basic/pom.xml +++ b/tests/servlet/basic/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/debug/pom.xml b/tests/servlet/debug/pom.xml index d0655756..7a44f324 100644 --- a/tests/servlet/debug/pom.xml +++ b/tests/servlet/debug/pom.xml @@ -20,7 +20,7 @@ tyrus-tests-servlet-project org.glassfish.tyrus.tests.servlet - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0 diff --git a/tests/servlet/dynamic-deploy/pom.xml b/tests/servlet/dynamic-deploy/pom.xml index 046cc036..39d590b4 100644 --- a/tests/servlet/dynamic-deploy/pom.xml +++ b/tests/servlet/dynamic-deploy/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/embedded-glassfish-test/pom.xml b/tests/servlet/embedded-glassfish-test/pom.xml index 4358ae60..b5f7dc84 100644 --- a/tests/servlet/embedded-glassfish-test/pom.xml +++ b/tests/servlet/embedded-glassfish-test/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/inject/pom.xml b/tests/servlet/inject/pom.xml index 307e475a..4d4c2cec 100644 --- a/tests/servlet/inject/pom.xml +++ b/tests/servlet/inject/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/maxsessions-per-app/pom.xml b/tests/servlet/maxsessions-per-app/pom.xml index 63b4ec57..ff18dcb0 100755 --- a/tests/servlet/maxsessions-per-app/pom.xml +++ b/tests/servlet/maxsessions-per-app/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/maxsessions-per-remoteaddr/pom.xml b/tests/servlet/maxsessions-per-remoteaddr/pom.xml index d1bb37a0..ee98feef 100755 --- a/tests/servlet/maxsessions-per-remoteaddr/pom.xml +++ b/tests/servlet/maxsessions-per-remoteaddr/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/mbean/pom.xml b/tests/servlet/mbean/pom.xml index 2b066aea..f4e5db8c 100644 --- a/tests/servlet/mbean/pom.xml +++ b/tests/servlet/mbean/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/noappconfig/pom.xml b/tests/servlet/noappconfig/pom.xml index 32ecbd1a..798191da 100755 --- a/tests/servlet/noappconfig/pom.xml +++ b/tests/servlet/noappconfig/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/oneappconfig/pom.xml b/tests/servlet/oneappconfig/pom.xml index bfeb428d..d6f5ae1a 100755 --- a/tests/servlet/oneappconfig/pom.xml +++ b/tests/servlet/oneappconfig/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/pom.xml b/tests/servlet/pom.xml index df1ae56a..6aa64c8b 100755 --- a/tests/servlet/pom.xml +++ b/tests/servlet/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT org.glassfish.tyrus.tests.servlet diff --git a/tests/servlet/remote-endpoint-timeout/pom.xml b/tests/servlet/remote-endpoint-timeout/pom.xml index 6952439d..56c08eb6 100755 --- a/tests/servlet/remote-endpoint-timeout/pom.xml +++ b/tests/servlet/remote-endpoint-timeout/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/session/pom.xml b/tests/servlet/session/pom.xml index a71026e5..86a139ea 100755 --- a/tests/servlet/session/pom.xml +++ b/tests/servlet/session/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/servlet/twoappconfig/pom.xml b/tests/servlet/twoappconfig/pom.xml index aa60fc17..415603c4 100755 --- a/tests/servlet/twoappconfig/pom.xml +++ b/tests/servlet/twoappconfig/pom.xml @@ -22,7 +22,7 @@ org.glassfish.tyrus.tests.servlet tyrus-tests-servlet-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT war diff --git a/tests/tools/pom.xml b/tests/tools/pom.xml index dd7295c8..c66416a2 100755 --- a/tests/tools/pom.xml +++ b/tests/tools/pom.xml @@ -20,7 +20,7 @@ org.glassfish.tyrus.tests tyrus-tests-project - 2.1.3.payara-p1 + 2.1.3.payara-p2-SNAPSHOT 4.0.0