From a7243e14601b8addef7ca356a1d973cda1602968 Mon Sep 17 00:00:00 2001 From: Matt Gill Date: Fri, 13 Dec 2019 15:55:40 +0000 Subject: [PATCH 1/2] Abort filter chain if SSL connection closed This should prevent endless loops if the SSL connection is terminated early without enough data. Signed-off-by: Matt Gill --- .../org/glassfish/grizzly/ssl/SSLBaseFilter.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/modules/grizzly/src/main/java/org/glassfish/grizzly/ssl/SSLBaseFilter.java b/modules/grizzly/src/main/java/org/glassfish/grizzly/ssl/SSLBaseFilter.java index d550352328..96330fd466 100644 --- a/modules/grizzly/src/main/java/org/glassfish/grizzly/ssl/SSLBaseFilter.java +++ b/modules/grizzly/src/main/java/org/glassfish/grizzly/ssl/SSLBaseFilter.java @@ -1,5 +1,6 @@ /* - * Copyright (c) 2012, 2017 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2019 Oracle and/or its affiliates and others. + * All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -12,6 +13,9 @@ * https://www.gnu.org/software/classpath/license.html. * * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * + * Contributors: + * Payara Services - Propagate stop action on a closed SSL connection */ package org.glassfish.grizzly.ssl; @@ -441,7 +445,11 @@ protected NextAction unwrapAll(final FilterChainContext ctx, if (output.hasRemaining() || isClosed) { ctx.setMessage(output); - return ctx.getInvokeAction(makeInputRemainder(sslCtx, ctx, input)); + if (!isClosed) { + return ctx.getInvokeAction(makeInputRemainder(sslCtx, ctx, input)); + } else { + LOGGER.finer("Closed SSL connection detected, terminating chain."); + } } } From 548746fcdb21dea19a9dd31bc704dfc8da573793 Mon Sep 17 00:00:00 2001 From: Matt Gill Date: Mon, 16 Dec 2019 15:44:02 +0000 Subject: [PATCH 2/2] Update version number to 2.4.3.payara-p10 --- bom/pom.xml | 2 +- extras/bundles/grizzly-httpservice-bundle/pom.xml | 4 ++-- extras/bundles/pom.xml | 4 ++-- extras/connection-pool/pom.xml | 4 ++-- extras/grizzly-httpservice/pom.xml | 4 ++-- extras/http-server-jaxws/pom.xml | 4 ++-- extras/http-server-multipart/pom.xml | 4 ++-- extras/http-servlet-extras/pom.xml | 4 ++-- extras/pom.xml | 4 ++-- extras/tls-sni/pom.xml | 4 ++-- modules/bundles/comet/pom.xml | 4 ++-- modules/bundles/core/pom.xml | 4 ++-- modules/bundles/http-all/pom.xml | 4 ++-- modules/bundles/http-servlet/pom.xml | 4 ++-- modules/bundles/http/pom.xml | 4 ++-- modules/bundles/pom.xml | 4 ++-- modules/bundles/websockets/pom.xml | 4 ++-- modules/comet/pom.xml | 4 ++-- modules/grizzly/pom.xml | 4 ++-- modules/http-ajp/pom.xml | 4 ++-- modules/http-server/pom.xml | 4 ++-- modules/http-servlet/pom.xml | 4 ++-- modules/http/pom.xml | 4 ++-- modules/http2/pom.xml | 4 ++-- modules/monitoring/grizzly/pom.xml | 4 ++-- modules/monitoring/http-server/pom.xml | 4 ++-- modules/monitoring/http/pom.xml | 4 ++-- modules/monitoring/pom.xml | 4 ++-- modules/pom.xml | 4 ++-- modules/portunif/pom.xml | 4 ++-- modules/websockets/pom.xml | 4 ++-- pom.xml | 4 ++-- samples/connection-pool-samples/pom.xml | 4 ++-- samples/framework-samples/pom.xml | 4 ++-- samples/http-ajp-samples/pom.xml | 4 ++-- samples/http-jaxws-samples/pom.xml | 4 ++-- samples/http-multipart-samples/pom.xml | 4 ++-- samples/http-samples/pom.xml | 4 ++-- samples/http-server-samples/pom.xml | 4 ++-- samples/pom.xml | 4 ++-- samples/portunif/pom.xml | 4 ++-- samples/tls-sni-samples/pom.xml | 4 ++-- 42 files changed, 83 insertions(+), 83 deletions(-) diff --git a/bom/pom.xml b/bom/pom.xml index ef6844f406..d425843179 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -31,7 +31,7 @@ grizzly-bom pom grizzly-bom - 2.4.3.payara-p9 + 2.4.3.payara-p10 Grizzly Bill of Materials (BOM) diff --git a/extras/bundles/grizzly-httpservice-bundle/pom.xml b/extras/bundles/grizzly-httpservice-bundle/pom.xml index 3cb234a5bc..337792eb05 100644 --- a/extras/bundles/grizzly-httpservice-bundle/pom.xml +++ b/extras/bundles/grizzly-httpservice-bundle/pom.xml @@ -20,13 +20,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 jar Grizzly OSGi HttpService Bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 org.glassfish.grizzly.osgi grizzly-httpservice-bundle diff --git a/extras/bundles/pom.xml b/extras/bundles/pom.xml index 997fdf4030..2a4226fa2d 100644 --- a/extras/bundles/pom.xml +++ b/extras/bundles/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-extra-bundles pom - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-extra-bundles diff --git a/extras/connection-pool/pom.xml b/extras/connection-pool/pom.xml index 4b2996ed40..d68bc2be65 100644 --- a/extras/connection-pool/pom.xml +++ b/extras/connection-pool/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 connection-pool bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 connection-pool install diff --git a/extras/grizzly-httpservice/pom.xml b/extras/grizzly-httpservice/pom.xml index 6d2463b9f7..746ee2036a 100644 --- a/extras/grizzly-httpservice/pom.xml +++ b/extras/grizzly-httpservice/pom.xml @@ -20,14 +20,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 jar Grizzly OSGi HttpService - 2.4.3.payara-p9 + 2.4.3.payara-p10 org.glassfish.grizzly.osgi grizzly-httpservice diff --git a/extras/http-server-jaxws/pom.xml b/extras/http-server-jaxws/pom.xml index 07d9e1b6e3..81379840cd 100644 --- a/extras/http-server-jaxws/pom.xml +++ b/extras/http-server-jaxws/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-http-server-jaxws bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-server-jaxws install diff --git a/extras/http-server-multipart/pom.xml b/extras/http-server-multipart/pom.xml index 5a5cc7edb4..c0ad528a17 100644 --- a/extras/http-server-multipart/pom.xml +++ b/extras/http-server-multipart/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-http-server-multipart bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-server-multipart install diff --git a/extras/http-servlet-extras/pom.xml b/extras/http-servlet-extras/pom.xml index bb6c23bc25..1721c53545 100644 --- a/extras/http-servlet-extras/pom.xml +++ b/extras/http-servlet-extras/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-http-servlet-extras bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-servlet-extras install diff --git a/extras/pom.xml b/extras/pom.xml index c04c753aaa..d2621c2ae6 100644 --- a/extras/pom.xml +++ b/extras/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../pom.xml 4.0.0 grizzly-extras pom - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-extras diff --git a/extras/tls-sni/pom.xml b/extras/tls-sni/pom.xml index a82c096f05..afb7e48abd 100644 --- a/extras/tls-sni/pom.xml +++ b/extras/tls-sni/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 tls-sni bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 tls-sni install diff --git a/modules/bundles/comet/pom.xml b/modules/bundles/comet/pom.xml index e0d791af61..1789c33405 100644 --- a/modules/bundles/comet/pom.xml +++ b/modules/bundles/comet/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 grizzly-comet-server jar - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-comet-server install diff --git a/modules/bundles/core/pom.xml b/modules/bundles/core/pom.xml index a85cf59997..e0a9c82c57 100644 --- a/modules/bundles/core/pom.xml +++ b/modules/bundles/core/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 grizzly-core jar - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-core install diff --git a/modules/bundles/http-all/pom.xml b/modules/bundles/http-all/pom.xml index 9855d97f48..6ac116adfe 100644 --- a/modules/bundles/http-all/pom.xml +++ b/modules/bundles/http-all/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 grizzly-http-all jar - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-all install diff --git a/modules/bundles/http-servlet/pom.xml b/modules/bundles/http-servlet/pom.xml index 2cd0e90b57..09199400e7 100755 --- a/modules/bundles/http-servlet/pom.xml +++ b/modules/bundles/http-servlet/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 grizzly-http-servlet-server jar - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-servlet-server install diff --git a/modules/bundles/http/pom.xml b/modules/bundles/http/pom.xml index a18e542ba4..7eee8f06ff 100755 --- a/modules/bundles/http/pom.xml +++ b/modules/bundles/http/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 grizzly-http-server-core jar - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-server-core install diff --git a/modules/bundles/pom.xml b/modules/bundles/pom.xml index 009c47bf01..8d17ad7bbb 100644 --- a/modules/bundles/pom.xml +++ b/modules/bundles/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-bundles pom - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-bundles diff --git a/modules/bundles/websockets/pom.xml b/modules/bundles/websockets/pom.xml index 7fc4ed8554..e446d05f1e 100644 --- a/modules/bundles/websockets/pom.xml +++ b/modules/bundles/websockets/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 grizzly-websockets-server jar - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-websockets-server install diff --git a/modules/comet/pom.xml b/modules/comet/pom.xml index d6b106b601..815c4f0d17 100644 --- a/modules/comet/pom.xml +++ b/modules/comet/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-comet bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-comet install diff --git a/modules/grizzly/pom.xml b/modules/grizzly/pom.xml index e119a6dd4c..cdf9bd15dd 100644 --- a/modules/grizzly/pom.xml +++ b/modules/grizzly/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-framework bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-framework install diff --git a/modules/http-ajp/pom.xml b/modules/http-ajp/pom.xml index 640a7d381a..501b68ac8c 100755 --- a/modules/http-ajp/pom.xml +++ b/modules/http-ajp/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-http-ajp bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-ajp https://projects.eclipse.org/projects/ee4j.grizzly diff --git a/modules/http-server/pom.xml b/modules/http-server/pom.xml index fa74cf4c66..daec7ae48f 100644 --- a/modules/http-server/pom.xml +++ b/modules/http-server/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-http-server bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-server install diff --git a/modules/http-servlet/pom.xml b/modules/http-servlet/pom.xml index 3820e0789c..bf16f9f143 100755 --- a/modules/http-servlet/pom.xml +++ b/modules/http-servlet/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-http-servlet bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-servlet install diff --git a/modules/http/pom.xml b/modules/http/pom.xml index 5e40032749..36e89a8ca6 100644 --- a/modules/http/pom.xml +++ b/modules/http/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-http bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http install diff --git a/modules/http2/pom.xml b/modules/http2/pom.xml index 658e7cddd2..5e214889e5 100644 --- a/modules/http2/pom.xml +++ b/modules/http2/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-http2 - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http2 install diff --git a/modules/monitoring/grizzly/pom.xml b/modules/monitoring/grizzly/pom.xml index c7ecb750ce..32f274c728 100644 --- a/modules/monitoring/grizzly/pom.xml +++ b/modules/monitoring/grizzly/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 grizzly-framework-monitoring bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-framework-monitoring install diff --git a/modules/monitoring/http-server/pom.xml b/modules/monitoring/http-server/pom.xml index fe9f8d4787..9dfc5cea69 100644 --- a/modules/monitoring/http-server/pom.xml +++ b/modules/monitoring/http-server/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 grizzly-http-server-monitoring bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-server-monitoring install diff --git a/modules/monitoring/http/pom.xml b/modules/monitoring/http/pom.xml index 93c4cf2225..2103e8fe4d 100644 --- a/modules/monitoring/http/pom.xml +++ b/modules/monitoring/http/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../../pom.xml 4.0.0 grizzly-http-monitoring bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-monitoring install diff --git a/modules/monitoring/pom.xml b/modules/monitoring/pom.xml index 32a585e0f7..68867906b8 100644 --- a/modules/monitoring/pom.xml +++ b/modules/monitoring/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-monitoring pom - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-monitoring grizzly diff --git a/modules/pom.xml b/modules/pom.xml index c95e7f232b..5b89bd5cd5 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../pom.xml 4.0.0 grizzly-modules pom - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-modules diff --git a/modules/portunif/pom.xml b/modules/portunif/pom.xml index 1fbbb42c96..b18c984d63 100644 --- a/modules/portunif/pom.xml +++ b/modules/portunif/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-portunif bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-portunif install diff --git a/modules/websockets/pom.xml b/modules/websockets/pom.xml index c38627bed9..6405e935ba 100644 --- a/modules/websockets/pom.xml +++ b/modules/websockets/pom.xml @@ -21,13 +21,13 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 grizzly-websockets bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-websockets install diff --git a/pom.xml b/pom.xml index 7af75f2613..6c714a608a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.glassfish.grizzly grizzly-bom - 2.4.3.payara-p9 + 2.4.3.payara-p10 bom/pom.xml @@ -28,7 +28,7 @@ grizzly-project pom grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 http://grizzly.java.net GitHub diff --git a/samples/connection-pool-samples/pom.xml b/samples/connection-pool-samples/pom.xml index 0c6a68bd30..5f20b770fe 100755 --- a/samples/connection-pool-samples/pom.xml +++ b/samples/connection-pool-samples/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 org.glassfish.grizzly.samples connection-pool-samples bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 connection-pool-samples install diff --git a/samples/framework-samples/pom.xml b/samples/framework-samples/pom.xml index a65b3fe525..72e896f92e 100755 --- a/samples/framework-samples/pom.xml +++ b/samples/framework-samples/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 org.glassfish.grizzly.samples grizzly-framework-samples bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-framework-samples install diff --git a/samples/http-ajp-samples/pom.xml b/samples/http-ajp-samples/pom.xml index 90e20f6d19..c9b01ab989 100644 --- a/samples/http-ajp-samples/pom.xml +++ b/samples/http-ajp-samples/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 org.glassfish.grizzly.samples grizzly-http-ajp-samples bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-ajp-samples install diff --git a/samples/http-jaxws-samples/pom.xml b/samples/http-jaxws-samples/pom.xml index d58cbea339..b4f7322977 100644 --- a/samples/http-jaxws-samples/pom.xml +++ b/samples/http-jaxws-samples/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 org.glassfish.grizzly.samples grizzly-http-jaxws-samples bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-jaxws-samples install diff --git a/samples/http-multipart-samples/pom.xml b/samples/http-multipart-samples/pom.xml index 6b3c331ced..7c79060198 100644 --- a/samples/http-multipart-samples/pom.xml +++ b/samples/http-multipart-samples/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 org.glassfish.grizzly.samples grizzly-http-multipart-samples bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-multipart-samples install diff --git a/samples/http-samples/pom.xml b/samples/http-samples/pom.xml index a68907c413..6866a5a170 100755 --- a/samples/http-samples/pom.xml +++ b/samples/http-samples/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 org.glassfish.grizzly.samples grizzly-http-samples bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-samples install diff --git a/samples/http-server-samples/pom.xml b/samples/http-server-samples/pom.xml index e8f6423bfe..e1a048a12e 100644 --- a/samples/http-server-samples/pom.xml +++ b/samples/http-server-samples/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 org.glassfish.grizzly.samples grizzly-http-server-samples bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-http-server-samples install diff --git a/samples/pom.xml b/samples/pom.xml index d2d8115df8..e9d9ae2096 100755 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../pom.xml 4.0.0 org.glassfish.grizzly.samples grizzly-samples pom - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-samples framework-samples diff --git a/samples/portunif/pom.xml b/samples/portunif/pom.xml index 3b049b7fde..9512d83700 100644 --- a/samples/portunif/pom.xml +++ b/samples/portunif/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 org.glassfish.grizzly.samples grizzly-portunif-samples bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-portunif-samples install diff --git a/samples/tls-sni-samples/pom.xml b/samples/tls-sni-samples/pom.xml index 1881aa66fc..4c2fb99078 100644 --- a/samples/tls-sni-samples/pom.xml +++ b/samples/tls-sni-samples/pom.xml @@ -15,14 +15,14 @@ org.glassfish.grizzly grizzly-project - 2.4.3.payara-p9 + 2.4.3.payara-p10 ../../pom.xml 4.0.0 org.glassfish.grizzly.samples grizzly-tls-sni-samples bundle - 2.4.3.payara-p9 + 2.4.3.payara-p10 grizzly-tls-sni-samples install