diff --git a/VERSION.txt b/VERSION.txt
index 8a0448bb107b..9c307d87661a 100644
--- a/VERSION.txt
+++ b/VERSION.txt
@@ -1,11 +1,46 @@
-jetty-12.0.13-SNAPSHOT
+jetty-12.0.14-SNAPSHOT
+
+jetty-12.0.13 - 03 September 2024
+ + 3184 Make LifeCycle implement AutoCloseable
+ + 3553 Support sslSession() in Jetty Client
+ + 6514 How to warm up SslConnection
+ + 9121 Jetty 12 - Flaky
+ BlockedWritesWithSmallThreadPoolTest.testServerThreadsBlockedInWrites()
+ + 11322 Change jetty-nosql MongoDB dependency from unmaintained
+ mongo-java-driver to mongodb-driver-sync
+ + 11408 Jetty start module property values with ${expr} are not being expanded
+ + 11434 resolve differences in EE9/EE10/Core AliasCheckerSymlinkTests
+ + 11822 h2 server responses exceeding SETTINGS_MAX_HEADER_LIST_SIZE do not
+ result in RST_STREAM or GOAWAY
+ + 11926 File upload puzzle
+ + 12063 Introduce Jetty module for HTTP/2 client dependencies
+ + 12094 Possible regression in ContextFactory.getObjectInstance() between
+ Jetty 11.0.22 and 12.0.11
+ + 12104 Error handling on ee9 / ee8 with HTTP/1.0 can result in an empty
+ `Connection: ` response header.
+ + 12120 Introduce properties for cipher suites
+ + 12122 NPE in HttpReceiver.responseContentAvailable()
+ + 12124 JSP temp directory regression, possibly due to fix for #12044
+ + 12128 How do I configure embedded Jetty to serve webjars?
+ + 12154 Is it possible to define max number of virtual threads when
+ VirtualThreadsExecutor is enabled, i.e. max number of http requests being
+ handled in the same time?
+ + 12158 Jetty12 migration help
+ + 12163 HttpConfiguration dump is missing entries
+ + 12171 QoSHandler does not resume on a virtual thread
+ + 12173 Jetty Maven Plugin - jetty:run does not work with pom type
+ dependencies
+ + 12175 `SslContextFactory` is hardcoded to use `Password`.
+ + 12185 QosHandler suspend queue limit
+ + 12207 Jetty Maven Plugin 12.x no longer configures `DefaultHandler`
+ + 12212 ShutdownOutput for non-persistent HTTP/1 connections
jetty-12.0.12 - 25 July 2024
- + 265 --list-config license enhancement
+ + 265 list-config license enhancement
+ 10904 jetty.sh reports FAILED too early
+ 11965 Client: Some HTTP/2 requests are never sent
+ 11996 mTLS: client cert verification for QUIC/HTTP3
- + 12000 Cannot use Paths that have spaces with `jetty-ee10-maven-plugin`
+ + 12000 Cannot use Paths that have spaces with `jetty-ee10-maven-plugin`
+ 12018 NPE when passing null value to Request.param
+ 12019 External property file not being read
+ 12022 Intermittent NPE in OutputStream.close with GzipHandler
diff --git a/build/build-resources/pom.xml b/build/build-resources/pom.xml
index 103b58dd30bd..9ebd7cc8f114 100644
--- a/build/build-resources/pom.xml
+++ b/build/build-resources/pom.xml
@@ -8,7 +8,7 @@
-->
org.eclipse.jetty
build-resources
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jar
Build :: Resources
diff --git a/build/pom.xml b/build/pom.xml
index 8e8c4b024019..f12eedd4b149 100644
--- a/build/pom.xml
+++ b/build/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.build
build
diff --git a/build/scripts/release-jetty.sh b/build/scripts/release-jetty.sh
index 1453a194415a..184630f59b66 100755
--- a/build/scripts/release-jetty.sh
+++ b/build/scripts/release-jetty.sh
@@ -88,11 +88,11 @@ if [ ! -d "$ALT_DEPLOY_DIR" ] ; then
fi
# DEPLOY_OPTS="-Dmaven.test.failure.ignore=true"
-DEPLOY_OPTS="-DskipTests -Dasciidoctor.skip=false -Dmaven.build.cache.enabled=false"
+DEPLOY_OPTS="-DskipTests -Dasciidoctor.skip=false -Dmaven.build.cache.enabled=false -DdeployAtEnd=true -DretryFailedDeploymentCount=3 "
# DEPLOY_OPTS="$DEPLOY_OPTS -DaltDeploymentRepository=intarget::default::file://$ALT_DEPLOY_DIR/"
# Uncomment for Java 1.7
-export MAVEN_OPTS="-Xmx4g"
+export MAVEN_OPTS="-Xmx8g -Xms8g"
echo ""
echo "-----------------------------------------------"
diff --git a/documentation/jetty/modules/code/examples/pom.xml b/documentation/jetty/modules/code/examples/pom.xml
index ae32e478d2a5..c6faee519087 100644
--- a/documentation/jetty/modules/code/examples/pom.xml
+++ b/documentation/jetty/modules/code/examples/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.documentation
documentation
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../../../../pom.xml
code-examples
diff --git a/documentation/jetty/pom.xml b/documentation/jetty/pom.xml
index 2a42334fe781..2ec097835d1d 100644
--- a/documentation/jetty/pom.xml
+++ b/documentation/jetty/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.documentation
documentation
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty
pom
diff --git a/documentation/pom.xml b/documentation/pom.xml
index 27ab66b0e522..058cc12fa639 100644
--- a/documentation/pom.xml
+++ b/documentation/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.documentation
documentation
diff --git a/javadoc/pom.xml b/javadoc/pom.xml
index b619e83c50a6..965fb8978dc5 100644
--- a/javadoc/pom.xml
+++ b/javadoc/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
javadoc
jar
diff --git a/jetty-core/jetty-alpn/jetty-alpn-client/pom.xml b/jetty-core/jetty-alpn/jetty-alpn-client/pom.xml
index 4523fa6b219d..b1708df3bc47 100644
--- a/jetty-core/jetty-alpn/jetty-alpn-client/pom.xml
+++ b/jetty-core/jetty-alpn/jetty-alpn-client/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-alpn
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-alpn-client
Core :: ALPN :: Client
diff --git a/jetty-core/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml b/jetty-core/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml
index ad231be3b610..5318402dbe49 100644
--- a/jetty-core/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml
+++ b/jetty-core/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml
@@ -6,7 +6,7 @@
org.eclipse.jetty
jetty-alpn
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-alpn-conscrypt-client
Core :: ALPN :: Conscrypt Client
diff --git a/jetty-core/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml b/jetty-core/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml
index 99da3b71c774..6bffe550e82a 100644
--- a/jetty-core/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml
+++ b/jetty-core/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-alpn
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-alpn-conscrypt-server
Core :: ALPN :: Conscrypt Server
diff --git a/jetty-core/jetty-alpn/jetty-alpn-java-client/pom.xml b/jetty-core/jetty-alpn/jetty-alpn-java-client/pom.xml
index d07be1031605..7e7f3821cfb7 100644
--- a/jetty-core/jetty-alpn/jetty-alpn-java-client/pom.xml
+++ b/jetty-core/jetty-alpn/jetty-alpn-java-client/pom.xml
@@ -6,7 +6,7 @@
org.eclipse.jetty
jetty-alpn
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-alpn-java-client
Core :: ALPN :: Java Client
diff --git a/jetty-core/jetty-alpn/jetty-alpn-java-server/pom.xml b/jetty-core/jetty-alpn/jetty-alpn-java-server/pom.xml
index 4b75ce5cc7aa..f4e2a0bb1bd1 100644
--- a/jetty-core/jetty-alpn/jetty-alpn-java-server/pom.xml
+++ b/jetty-core/jetty-alpn/jetty-alpn-java-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-alpn
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-alpn-java-server
Core :: ALPN :: Java Server
diff --git a/jetty-core/jetty-alpn/jetty-alpn-server/pom.xml b/jetty-core/jetty-alpn/jetty-alpn-server/pom.xml
index 0f63ac54074d..4977b839f22d 100644
--- a/jetty-core/jetty-alpn/jetty-alpn-server/pom.xml
+++ b/jetty-core/jetty-alpn/jetty-alpn-server/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-alpn
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-alpn-server
Core :: ALPN :: Server
diff --git a/jetty-core/jetty-alpn/pom.xml b/jetty-core/jetty-alpn/pom.xml
index 43a14118a207..6b3f8df9165a 100644
--- a/jetty-core/jetty-alpn/pom.xml
+++ b/jetty-core/jetty-alpn/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-alpn
pom
diff --git a/jetty-core/jetty-bom/pom.xml b/jetty-core/jetty-bom/pom.xml
index d8d76702c465..f9de530063c7 100644
--- a/jetty-core/jetty-bom/pom.xml
+++ b/jetty-core/jetty-bom/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-bom
@@ -18,282 +18,282 @@
org.eclipse.jetty
jetty-alpn-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-alpn-conscrypt-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-alpn-conscrypt-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-alpn-java-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-alpn-java-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-alpn-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-deploy
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-http
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-http-spi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-http-tools
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-io
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-jmx
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-jndi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-keystore
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-openid
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-plus
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-proxy
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-rewrite
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-security
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-session
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-slf4j-impl
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-start
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-unixdomain-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-util
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-util-ajax
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty
jetty-xml
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.demos
jetty-demo-handler
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.fcgi
jetty-fcgi-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.fcgi
jetty-fcgi-proxy
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.fcgi
jetty-fcgi-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http2
jetty-http2-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http2
jetty-http2-client-transport
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http2
jetty-http2-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http2
jetty-http2-hpack
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http2
jetty-http2-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http3
jetty-http3-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http3
jetty-http3-client-transport
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http3
jetty-http3-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http3
jetty-http3-qpack
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http3
jetty-http3-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.quic
jetty-quic-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.quic
jetty-quic-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.quic
jetty-quic-quiche-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.quic
jetty-quic-quiche-foreign
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.quic
jetty-quic-quiche-jna
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.quic
jetty-quic-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.websocket
jetty-websocket-core-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.websocket
jetty-websocket-core-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.websocket
jetty-websocket-core-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.websocket
jetty-websocket-jetty-api
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.websocket
jetty-websocket-jetty-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.websocket
jetty-websocket-jetty-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.websocket
jetty-websocket-jetty-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
diff --git a/jetty-core/jetty-client/pom.xml b/jetty-core/jetty-client/pom.xml
index 687ef4be2ac8..f605b7d07acc 100644
--- a/jetty-core/jetty-client/pom.xml
+++ b/jetty-core/jetty-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-client
Core :: HTTP Client
diff --git a/jetty-core/jetty-demos/jetty-demo-handler/pom.xml b/jetty-core/jetty-demos/jetty-demo-handler/pom.xml
index b88d32fc1bde..0d28ccff8c2f 100644
--- a/jetty-core/jetty-demos/jetty-demo-handler/pom.xml
+++ b/jetty-core/jetty-demos/jetty-demo-handler/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.demos
jetty-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-demo-handler
Core :: Demo Handler
diff --git a/jetty-core/jetty-demos/pom.xml b/jetty-core/jetty-demos/pom.xml
index 78a53f6a0320..5a5b579d35c2 100644
--- a/jetty-core/jetty-demos/pom.xml
+++ b/jetty-core/jetty-demos/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.demos
jetty-demos
diff --git a/jetty-core/jetty-deploy/pom.xml b/jetty-core/jetty-deploy/pom.xml
index fda4f9725178..2b1d27a977e7 100644
--- a/jetty-core/jetty-deploy/pom.xml
+++ b/jetty-core/jetty-deploy/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-deploy
Core :: Deployers
diff --git a/jetty-core/jetty-ee/pom.xml b/jetty-core/jetty-ee/pom.xml
index 3814783132de..b795c1265f0b 100644
--- a/jetty-core/jetty-ee/pom.xml
+++ b/jetty-core/jetty-ee/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee
Core :: EE Common
diff --git a/jetty-core/jetty-fcgi/jetty-fcgi-client/pom.xml b/jetty-core/jetty-fcgi/jetty-fcgi-client/pom.xml
index e6185008dda4..501e1ee5f093 100644
--- a/jetty-core/jetty-fcgi/jetty-fcgi-client/pom.xml
+++ b/jetty-core/jetty-fcgi/jetty-fcgi-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.fcgi
jetty-fcgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-fcgi-client
Core :: FastCGI :: Client
diff --git a/jetty-core/jetty-fcgi/jetty-fcgi-proxy/pom.xml b/jetty-core/jetty-fcgi/jetty-fcgi-proxy/pom.xml
index 6038e0a89813..9d9fe0f05c8f 100644
--- a/jetty-core/jetty-fcgi/jetty-fcgi-proxy/pom.xml
+++ b/jetty-core/jetty-fcgi/jetty-fcgi-proxy/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.fcgi
jetty-fcgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-fcgi-proxy
Core :: FastCGI :: Proxy
diff --git a/jetty-core/jetty-fcgi/jetty-fcgi-server/pom.xml b/jetty-core/jetty-fcgi/jetty-fcgi-server/pom.xml
index ae533269c87d..db5476b8da5f 100644
--- a/jetty-core/jetty-fcgi/jetty-fcgi-server/pom.xml
+++ b/jetty-core/jetty-fcgi/jetty-fcgi-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.fcgi
jetty-fcgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-fcgi-server
Core :: FastCGI :: Server
diff --git a/jetty-core/jetty-fcgi/pom.xml b/jetty-core/jetty-fcgi/pom.xml
index 6d586cb4d50c..c8f769850b16 100644
--- a/jetty-core/jetty-fcgi/pom.xml
+++ b/jetty-core/jetty-fcgi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.fcgi
jetty-fcgi
diff --git a/jetty-core/jetty-http-spi/pom.xml b/jetty-core/jetty-http-spi/pom.xml
index a487c1e5ddf9..8181e63dad09 100644
--- a/jetty-core/jetty-http-spi/pom.xml
+++ b/jetty-core/jetty-http-spi/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http-spi
Core :: HTTP SPI
diff --git a/jetty-core/jetty-http-tools/pom.xml b/jetty-core/jetty-http-tools/pom.xml
index 7666c6469b35..1f6ab47a28b2 100644
--- a/jetty-core/jetty-http-tools/pom.xml
+++ b/jetty-core/jetty-http-tools/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http-tools
Core :: HTTP Tools
diff --git a/jetty-core/jetty-http/pom.xml b/jetty-core/jetty-http/pom.xml
index b56c3840ebf5..ee0a3543c215 100644
--- a/jetty-core/jetty-http/pom.xml
+++ b/jetty-core/jetty-http/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http
Core :: HTTP
diff --git a/jetty-core/jetty-http2/jetty-http2-client-transport/pom.xml b/jetty-core/jetty-http2/jetty-http2-client-transport/pom.xml
index cc5ed2c8472a..3393a13c0f4e 100644
--- a/jetty-core/jetty-http2/jetty-http2-client-transport/pom.xml
+++ b/jetty-core/jetty-http2/jetty-http2-client-transport/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http2
jetty-http2
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http2-client-transport
Core :: HTTP2 :: Client Transport
diff --git a/jetty-core/jetty-http2/jetty-http2-client/pom.xml b/jetty-core/jetty-http2/jetty-http2-client/pom.xml
index b6abbc8ef902..df496771597c 100644
--- a/jetty-core/jetty-http2/jetty-http2-client/pom.xml
+++ b/jetty-core/jetty-http2/jetty-http2-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http2
jetty-http2
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http2-client
Core :: HTTP2 :: Client
diff --git a/jetty-core/jetty-http2/jetty-http2-common/pom.xml b/jetty-core/jetty-http2/jetty-http2-common/pom.xml
index d5c56da22856..d4fc80af314e 100644
--- a/jetty-core/jetty-http2/jetty-http2-common/pom.xml
+++ b/jetty-core/jetty-http2/jetty-http2-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http2
jetty-http2
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http2-common
Core :: HTTP2 :: Common
diff --git a/jetty-core/jetty-http2/jetty-http2-hpack/pom.xml b/jetty-core/jetty-http2/jetty-http2-hpack/pom.xml
index 6afd728c8ec3..6e0d2ae24244 100644
--- a/jetty-core/jetty-http2/jetty-http2-hpack/pom.xml
+++ b/jetty-core/jetty-http2/jetty-http2-hpack/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http2
jetty-http2
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http2-hpack
Core :: HTTP2 :: HPACK
diff --git a/jetty-core/jetty-http2/jetty-http2-server/pom.xml b/jetty-core/jetty-http2/jetty-http2-server/pom.xml
index ec1b8b0ed888..02f98f686741 100644
--- a/jetty-core/jetty-http2/jetty-http2-server/pom.xml
+++ b/jetty-core/jetty-http2/jetty-http2-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http2
jetty-http2
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http2-server
Core :: HTTP2 :: Server
diff --git a/jetty-core/jetty-http2/jetty-http2-tests/pom.xml b/jetty-core/jetty-http2/jetty-http2-tests/pom.xml
index 82af1f7e8891..7a51a05df901 100644
--- a/jetty-core/jetty-http2/jetty-http2-tests/pom.xml
+++ b/jetty-core/jetty-http2/jetty-http2-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http2
jetty-http2
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http2-tests
Core :: HTTP2 :: Tests
diff --git a/jetty-core/jetty-http2/pom.xml b/jetty-core/jetty-http2/pom.xml
index ee903a97dbc1..f5aa8fddb57e 100644
--- a/jetty-core/jetty-http2/pom.xml
+++ b/jetty-core/jetty-http2/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http2
jetty-http2
diff --git a/jetty-core/jetty-http3/jetty-http3-client-transport/pom.xml b/jetty-core/jetty-http3/jetty-http3-client-transport/pom.xml
index dcb3ce82dcda..4e238ea6af7c 100644
--- a/jetty-core/jetty-http3/jetty-http3-client-transport/pom.xml
+++ b/jetty-core/jetty-http3/jetty-http3-client-transport/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http3
jetty-http3
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http3-client-transport
Core :: HTTP3 :: HTTP Client Transport
diff --git a/jetty-core/jetty-http3/jetty-http3-client/pom.xml b/jetty-core/jetty-http3/jetty-http3-client/pom.xml
index 93efca5afec2..7a34c869e4c9 100644
--- a/jetty-core/jetty-http3/jetty-http3-client/pom.xml
+++ b/jetty-core/jetty-http3/jetty-http3-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http3
jetty-http3
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http3-client
Core :: HTTP3 :: Client
diff --git a/jetty-core/jetty-http3/jetty-http3-common/pom.xml b/jetty-core/jetty-http3/jetty-http3-common/pom.xml
index b80b0cdef121..98190bf17586 100644
--- a/jetty-core/jetty-http3/jetty-http3-common/pom.xml
+++ b/jetty-core/jetty-http3/jetty-http3-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http3
jetty-http3
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http3-common
Core :: HTTP3 :: Common
diff --git a/jetty-core/jetty-http3/jetty-http3-qpack/pom.xml b/jetty-core/jetty-http3/jetty-http3-qpack/pom.xml
index 9ca08231cdf9..f2f4f815321e 100644
--- a/jetty-core/jetty-http3/jetty-http3-qpack/pom.xml
+++ b/jetty-core/jetty-http3/jetty-http3-qpack/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http3
jetty-http3
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http3-qpack
Core :: HTTP3 :: QPACK
diff --git a/jetty-core/jetty-http3/jetty-http3-server/pom.xml b/jetty-core/jetty-http3/jetty-http3-server/pom.xml
index 1c3e7632ce56..ac56a6ab9dc7 100644
--- a/jetty-core/jetty-http3/jetty-http3-server/pom.xml
+++ b/jetty-core/jetty-http3/jetty-http3-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http3
jetty-http3
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http3-server
Core :: HTTP3 :: Server
diff --git a/jetty-core/jetty-http3/jetty-http3-tests/pom.xml b/jetty-core/jetty-http3/jetty-http3-tests/pom.xml
index a44f886d003c..03cdeac1fb0d 100644
--- a/jetty-core/jetty-http3/jetty-http3-tests/pom.xml
+++ b/jetty-core/jetty-http3/jetty-http3-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.http3
jetty-http3
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-http3-tests
Core :: HTTP3 :: Tests
diff --git a/jetty-core/jetty-http3/pom.xml b/jetty-core/jetty-http3/pom.xml
index 7afadda4520a..b8ae6ae13651 100644
--- a/jetty-core/jetty-http3/pom.xml
+++ b/jetty-core/jetty-http3/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.http3
jetty-http3
diff --git a/jetty-core/jetty-io/pom.xml b/jetty-core/jetty-io/pom.xml
index 5c339d8571af..9d5f33d0787d 100644
--- a/jetty-core/jetty-io/pom.xml
+++ b/jetty-core/jetty-io/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-io
Core :: IO
diff --git a/jetty-core/jetty-jmx/pom.xml b/jetty-core/jetty-jmx/pom.xml
index 084ac500c46e..e2616722617b 100644
--- a/jetty-core/jetty-jmx/pom.xml
+++ b/jetty-core/jetty-jmx/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-jmx
Core :: JMX
diff --git a/jetty-core/jetty-jndi/pom.xml b/jetty-core/jetty-jndi/pom.xml
index 34718587872e..39ec6fd41fd6 100644
--- a/jetty-core/jetty-jndi/pom.xml
+++ b/jetty-core/jetty-jndi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-jndi
Core :: JNDI
diff --git a/jetty-core/jetty-keystore/pom.xml b/jetty-core/jetty-keystore/pom.xml
index b8b8f671b622..94639e98c5d6 100644
--- a/jetty-core/jetty-keystore/pom.xml
+++ b/jetty-core/jetty-keystore/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-keystore
jar
diff --git a/jetty-core/jetty-maven/pom.xml b/jetty-core/jetty-maven/pom.xml
index 2c73ad869f1c..3e30dba438c3 100644
--- a/jetty-core/jetty-maven/pom.xml
+++ b/jetty-core/jetty-maven/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-maven
Core :: Maven
diff --git a/jetty-core/jetty-openid/pom.xml b/jetty-core/jetty-openid/pom.xml
index 8659aa1cfac8..1ee9352757c6 100644
--- a/jetty-core/jetty-openid/pom.xml
+++ b/jetty-core/jetty-openid/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-openid
EE10 :: OpenID
diff --git a/jetty-core/jetty-osgi/pom.xml b/jetty-core/jetty-osgi/pom.xml
index f513d1a17422..af7f922fbb84 100644
--- a/jetty-core/jetty-osgi/pom.xml
+++ b/jetty-core/jetty-osgi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-osgi
Core :: OSGi
diff --git a/jetty-core/jetty-plus/pom.xml b/jetty-core/jetty-plus/pom.xml
index 4ad426adb657..4ddfcd35096d 100644
--- a/jetty-core/jetty-plus/pom.xml
+++ b/jetty-core/jetty-plus/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-plus
Core :: Plus
diff --git a/jetty-core/jetty-proxy/pom.xml b/jetty-core/jetty-proxy/pom.xml
index 236794411f99..3a9b3fb37ec0 100644
--- a/jetty-core/jetty-proxy/pom.xml
+++ b/jetty-core/jetty-proxy/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-proxy
jar
diff --git a/jetty-core/jetty-quic/jetty-quic-client/pom.xml b/jetty-core/jetty-quic/jetty-quic-client/pom.xml
index 4abc624f2edf..7f51b3a60201 100644
--- a/jetty-core/jetty-quic/jetty-quic-client/pom.xml
+++ b/jetty-core/jetty-quic/jetty-quic-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.quic
jetty-quic
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-quic-client
Core :: QUIC :: Client
diff --git a/jetty-core/jetty-quic/jetty-quic-common/pom.xml b/jetty-core/jetty-quic/jetty-quic-common/pom.xml
index 6095877ac877..7f334e057b1e 100644
--- a/jetty-core/jetty-quic/jetty-quic-common/pom.xml
+++ b/jetty-core/jetty-quic/jetty-quic-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.quic
jetty-quic
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-quic-common
Core :: QUIC :: Common
diff --git a/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-common/pom.xml b/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-common/pom.xml
index c42ba60f61a5..8cbf17fb4873 100644
--- a/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-common/pom.xml
+++ b/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.quic
jetty-quic-quiche
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-quic-quiche-common
Core :: QUIC :: Quiche :: Common
diff --git a/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-foreign/pom.xml b/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-foreign/pom.xml
index e976f0d1872e..ab8bc0d696dd 100644
--- a/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-foreign/pom.xml
+++ b/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-foreign/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.quic
jetty-quic-quiche
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-quic-quiche-foreign
Core :: QUIC :: Quiche :: Foreign
diff --git a/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-jna/pom.xml b/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-jna/pom.xml
index a27c668a8d8a..4c7107ef53b2 100644
--- a/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-jna/pom.xml
+++ b/jetty-core/jetty-quic/jetty-quic-quiche/jetty-quic-quiche-jna/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.quic
jetty-quic-quiche
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-quic-quiche-jna
Core :: QUIC :: Quiche :: JNA Binding
diff --git a/jetty-core/jetty-quic/jetty-quic-quiche/pom.xml b/jetty-core/jetty-quic/jetty-quic-quiche/pom.xml
index bc81150c4203..96d9e110486f 100644
--- a/jetty-core/jetty-quic/jetty-quic-quiche/pom.xml
+++ b/jetty-core/jetty-quic/jetty-quic-quiche/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.quic
jetty-quic
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-quic-quiche
pom
diff --git a/jetty-core/jetty-quic/jetty-quic-server/pom.xml b/jetty-core/jetty-quic/jetty-quic-server/pom.xml
index b49ca347cc84..fba94615d1a9 100644
--- a/jetty-core/jetty-quic/jetty-quic-server/pom.xml
+++ b/jetty-core/jetty-quic/jetty-quic-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.quic
jetty-quic
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-quic-server
Core :: QUIC :: Server
diff --git a/jetty-core/jetty-quic/pom.xml b/jetty-core/jetty-quic/pom.xml
index 63e1e2fdc6bd..4623f5352f44 100644
--- a/jetty-core/jetty-quic/pom.xml
+++ b/jetty-core/jetty-quic/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.quic
jetty-quic
diff --git a/jetty-core/jetty-rewrite/pom.xml b/jetty-core/jetty-rewrite/pom.xml
index bd7c64eeb911..8e8203b31178 100644
--- a/jetty-core/jetty-rewrite/pom.xml
+++ b/jetty-core/jetty-rewrite/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-rewrite
Core :: Rewrite
diff --git a/jetty-core/jetty-security/pom.xml b/jetty-core/jetty-security/pom.xml
index 6db8ab504434..3fa86d6a5f20 100644
--- a/jetty-core/jetty-security/pom.xml
+++ b/jetty-core/jetty-security/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-security
Core :: Security
diff --git a/jetty-core/jetty-server/pom.xml b/jetty-core/jetty-server/pom.xml
index bbcf4e9650f1..d9b19590e59d 100644
--- a/jetty-core/jetty-server/pom.xml
+++ b/jetty-core/jetty-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-server
Core :: Server
diff --git a/jetty-core/jetty-session/pom.xml b/jetty-core/jetty-session/pom.xml
index 636f3dc6ce7c..ed05d7c52a0f 100644
--- a/jetty-core/jetty-session/pom.xml
+++ b/jetty-core/jetty-session/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-session
Core :: Sessions
diff --git a/jetty-core/jetty-slf4j-impl/pom.xml b/jetty-core/jetty-slf4j-impl/pom.xml
index b06dc7bb0397..48e86b11415c 100644
--- a/jetty-core/jetty-slf4j-impl/pom.xml
+++ b/jetty-core/jetty-slf4j-impl/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-slf4j-impl
Core :: SLF4J Implementation
diff --git a/jetty-core/jetty-start/pom.xml b/jetty-core/jetty-start/pom.xml
index 18d22bb7e96a..a613d801bd69 100644
--- a/jetty-core/jetty-start/pom.xml
+++ b/jetty-core/jetty-start/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-start
Core :: Start
diff --git a/jetty-core/jetty-tests/jetty-test-client-transports/pom.xml b/jetty-core/jetty-tests/jetty-test-client-transports/pom.xml
index 58012e9fa7b3..90e89cb5fee2 100644
--- a/jetty-core/jetty-tests/jetty-test-client-transports/pom.xml
+++ b/jetty-core/jetty-tests/jetty-test-client-transports/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-test-client-transports
Core :: Tests :: Client Transports
diff --git a/jetty-core/jetty-tests/jetty-test-http2-client-transport-provided-webapp/pom.xml b/jetty-core/jetty-tests/jetty-test-http2-client-transport-provided-webapp/pom.xml
index 5d01a9f84896..c3e1eb2a6219 100644
--- a/jetty-core/jetty-tests/jetty-test-http2-client-transport-provided-webapp/pom.xml
+++ b/jetty-core/jetty-tests/jetty-test-http2-client-transport-provided-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-test-http2-client-transport-provided-webapp
diff --git a/jetty-core/jetty-tests/jetty-test-jmx/pom.xml b/jetty-core/jetty-tests/jetty-test-jmx/pom.xml
index ff98f5716dd0..4c9e2f8eb41d 100644
--- a/jetty-core/jetty-tests/jetty-test-jmx/pom.xml
+++ b/jetty-core/jetty-tests/jetty-test-jmx/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-test-jmx
Core :: Tests :: JMX
diff --git a/jetty-core/jetty-tests/pom.xml b/jetty-core/jetty-tests/pom.xml
index 52c44bf302bf..93726dbdc3fc 100644
--- a/jetty-core/jetty-tests/pom.xml
+++ b/jetty-core/jetty-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-tests
pom
diff --git a/jetty-core/jetty-unixdomain-server/pom.xml b/jetty-core/jetty-unixdomain-server/pom.xml
index 5c26122acf0c..ae3f628ee417 100644
--- a/jetty-core/jetty-unixdomain-server/pom.xml
+++ b/jetty-core/jetty-unixdomain-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-unixdomain-server
Core :: Unix-Domain Sockets :: Server
diff --git a/jetty-core/jetty-util-ajax/pom.xml b/jetty-core/jetty-util-ajax/pom.xml
index de0cb6ae64ed..3338767ba368 100644
--- a/jetty-core/jetty-util-ajax/pom.xml
+++ b/jetty-core/jetty-util-ajax/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-util-ajax
Core :: Utilities :: JSON
diff --git a/jetty-core/jetty-util/pom.xml b/jetty-core/jetty-util/pom.xml
index bfc7508c72c9..c87849b73b2d 100644
--- a/jetty-core/jetty-util/pom.xml
+++ b/jetty-core/jetty-util/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-util
Core :: Utilities
diff --git a/jetty-core/jetty-websocket/jetty-websocket-core-client/pom.xml b/jetty-core/jetty-websocket/jetty-websocket-core-client/pom.xml
index f32465358bd8..f6061c169c62 100644
--- a/jetty-core/jetty-websocket/jetty-websocket-core-client/pom.xml
+++ b/jetty-core/jetty-websocket/jetty-websocket-core-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.websocket
jetty-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-websocket-core-client
Core :: Websocket :: Client
diff --git a/jetty-core/jetty-websocket/jetty-websocket-core-common/pom.xml b/jetty-core/jetty-websocket/jetty-websocket-core-common/pom.xml
index e1e0d95df404..10400a58cd70 100644
--- a/jetty-core/jetty-websocket/jetty-websocket-core-common/pom.xml
+++ b/jetty-core/jetty-websocket/jetty-websocket-core-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.websocket
jetty-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-websocket-core-common
Core :: Websocket :: Common
diff --git a/jetty-core/jetty-websocket/jetty-websocket-core-server/pom.xml b/jetty-core/jetty-websocket/jetty-websocket-core-server/pom.xml
index 2fe2a97ca88c..f6980bd830a3 100644
--- a/jetty-core/jetty-websocket/jetty-websocket-core-server/pom.xml
+++ b/jetty-core/jetty-websocket/jetty-websocket-core-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.websocket
jetty-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-websocket-core-server
Core :: Websocket :: Server
diff --git a/jetty-core/jetty-websocket/jetty-websocket-core-tests/pom.xml b/jetty-core/jetty-websocket/jetty-websocket-core-tests/pom.xml
index d8c7b1b9a85b..d8d77a02f7a1 100644
--- a/jetty-core/jetty-websocket/jetty-websocket-core-tests/pom.xml
+++ b/jetty-core/jetty-websocket/jetty-websocket-core-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.websocket
jetty-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-websocket-core-tests
Core :: Websocket :: Tests
diff --git a/jetty-core/jetty-websocket/jetty-websocket-jetty-api/pom.xml b/jetty-core/jetty-websocket/jetty-websocket-jetty-api/pom.xml
index 343bf2ae3d59..0289e4d2d4a7 100644
--- a/jetty-core/jetty-websocket/jetty-websocket-jetty-api/pom.xml
+++ b/jetty-core/jetty-websocket/jetty-websocket-jetty-api/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.websocket
jetty-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-websocket-jetty-api
Core :: Websocket :: Jetty API
diff --git a/jetty-core/jetty-websocket/jetty-websocket-jetty-client/pom.xml b/jetty-core/jetty-websocket/jetty-websocket-jetty-client/pom.xml
index 366d3e23af5b..3507e4370550 100644
--- a/jetty-core/jetty-websocket/jetty-websocket-jetty-client/pom.xml
+++ b/jetty-core/jetty-websocket/jetty-websocket-jetty-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.websocket
jetty-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-websocket-jetty-client
Core :: Websocket :: Jetty Client
diff --git a/jetty-core/jetty-websocket/jetty-websocket-jetty-common/pom.xml b/jetty-core/jetty-websocket/jetty-websocket-jetty-common/pom.xml
index ae3954517383..ab6c97f65b14 100644
--- a/jetty-core/jetty-websocket/jetty-websocket-jetty-common/pom.xml
+++ b/jetty-core/jetty-websocket/jetty-websocket-jetty-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.websocket
jetty-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-websocket-jetty-common
Core :: Websocket :: Jetty Common
diff --git a/jetty-core/jetty-websocket/jetty-websocket-jetty-server/pom.xml b/jetty-core/jetty-websocket/jetty-websocket-jetty-server/pom.xml
index c8b405189a13..d255fe0f7b75 100644
--- a/jetty-core/jetty-websocket/jetty-websocket-jetty-server/pom.xml
+++ b/jetty-core/jetty-websocket/jetty-websocket-jetty-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.websocket
jetty-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-websocket-jetty-server
Core :: Websocket :: Jetty Server
diff --git a/jetty-core/jetty-websocket/jetty-websocket-jetty-tests/pom.xml b/jetty-core/jetty-websocket/jetty-websocket-jetty-tests/pom.xml
index e7435bd06662..f6af37649a3b 100644
--- a/jetty-core/jetty-websocket/jetty-websocket-jetty-tests/pom.xml
+++ b/jetty-core/jetty-websocket/jetty-websocket-jetty-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.websocket
jetty-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-websocket-jetty-tests
Core :: Websocket :: Jetty Tests
diff --git a/jetty-core/jetty-websocket/pom.xml b/jetty-core/jetty-websocket/pom.xml
index 9b5caef194a7..d4a752f4c6a3 100644
--- a/jetty-core/jetty-websocket/pom.xml
+++ b/jetty-core/jetty-websocket/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.websocket
jetty-websocket
diff --git a/jetty-core/jetty-xml/pom.xml b/jetty-core/jetty-xml/pom.xml
index 498d3bb9fbd9..acb407ffb279 100644
--- a/jetty-core/jetty-xml/pom.xml
+++ b/jetty-core/jetty-xml/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-core
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-xml
Core :: XML
diff --git a/jetty-core/pom.xml b/jetty-core/pom.xml
index 06e49ccb8054..6ca30bf89b28 100644
--- a/jetty-core/pom.xml
+++ b/jetty-core/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-core
pom
diff --git a/jetty-ee10/jetty-ee10-annotations/pom.xml b/jetty-ee10/jetty-ee10-annotations/pom.xml
index 2c810fdb6e0b..368493c7c622 100644
--- a/jetty-ee10/jetty-ee10-annotations/pom.xml
+++ b/jetty-ee10/jetty-ee10-annotations/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-annotations
EE10 :: Servlet Annotations
diff --git a/jetty-ee10/jetty-ee10-apache-jsp/pom.xml b/jetty-ee10/jetty-ee10-apache-jsp/pom.xml
index 4187049cb968..967eaa890f71 100644
--- a/jetty-ee10/jetty-ee10-apache-jsp/pom.xml
+++ b/jetty-ee10/jetty-ee10-apache-jsp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-apache-jsp
EE10 :: Apache JSP
diff --git a/jetty-ee10/jetty-ee10-bom/pom.xml b/jetty-ee10/jetty-ee10-bom/pom.xml
index 036163f4aab9..75ac0777d4cd 100644
--- a/jetty-ee10/jetty-ee10-bom/pom.xml
+++ b/jetty-ee10/jetty-ee10-bom/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-bom
@@ -19,132 +19,132 @@
org.eclipse.jetty.ee10
jetty-ee10-annotations
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-apache-jsp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-cdi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-fcgi-proxy
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-glassfish-jstl
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-jaspi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-jndi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-jspc-maven-plugin
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-maven-plugin
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-plus
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-proxy
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-quickstart
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-runner
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-servlet
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-servlets
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10-webapp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi-alpn
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi-boot
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi-boot-jsp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket-jakarta-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket-jakarta-client-webapp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket-jakarta-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket-jakarta-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket-jetty-client-webapp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket-jetty-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket-servlet
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
diff --git a/jetty-ee10/jetty-ee10-cdi/pom.xml b/jetty-ee10/jetty-ee10-cdi/pom.xml
index 87bad4de3cb6..3abe43227cab 100644
--- a/jetty-ee10/jetty-ee10-cdi/pom.xml
+++ b/jetty-ee10/jetty-ee10-cdi/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-cdi
jar
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-jar/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-jar/pom.xml
index 966b751467d3..d96272958ebd 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-jar/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-jar/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demo-async-rest
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-async-rest-jar
jar
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-server/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-server/pom.xml
index 1abd0858bc3c..64d5e05cc243 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-server/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demo-async-rest
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-async-rest-server
jar
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-webapp/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-webapp/pom.xml
index 0226ab883d21..b0c54a1d63eb 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/jetty-ee10-demo-async-rest-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demo-async-rest
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-async-rest-webapp
war
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/pom.xml
index bf7042ac50da..827cf367fd14 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-async-rest/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-async-rest
pom
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-embedded/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-embedded/pom.xml
index 880c5a521f8a..e67c11853fc0 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-embedded/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-embedded/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-embedded
EE10 :: Demo :: Embedded Jetty
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jaas-webapp/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jaas-webapp/pom.xml
index e47a78489f5a..d1894f0fd693 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jaas-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jaas-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-jaas-webapp
war
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jetty-webapp/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jetty-webapp/pom.xml
index 92ad445981f7..5b52d3b1f41f 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jetty-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jetty-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-jetty-webapp
war
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jndi-webapp/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jndi-webapp/pom.xml
index 748fba126917..3726e7891fda 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jndi-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jndi-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-jndi-webapp
war
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jsp-webapp/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jsp-webapp/pom.xml
index 8d5dfd28e944..f8c9f4d933b6 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jsp-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-jsp-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-jsp-webapp
war
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-mock-resources/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-mock-resources/pom.xml
index 788cfe0c591d..9ac497d10a65 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-mock-resources/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-mock-resources/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-mock-resources
jar
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-proxy-webapp/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-proxy-webapp/pom.xml
index 8060f36f1e34..9db278c3b006 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-proxy-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-proxy-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-proxy-webapp
war
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-simple-webapp/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-simple-webapp/pom.xml
index adf351fe7529..df51f08ee80d 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-simple-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-simple-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-simple-webapp
war
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-container-initializer/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-container-initializer/pom.xml
index 5633a1523bd7..34b3b8e056b6 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-container-initializer/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-container-initializer/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../../pom.xml
jetty-ee10-demo-container-initializer
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-spec-webapp/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-spec-webapp/pom.xml
index b5b12f93d751..54f409a6e9d3 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-spec-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-spec-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../../pom.xml
jetty-ee10-demo-spec-webapp
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-web-fragment/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-web-fragment/pom.xml
index b9537213f850..a13d9534e998 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-web-fragment/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/jetty-ee10-demo-web-fragment/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../../pom.xml
jetty-ee10-demo-web-fragment
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/pom.xml
index 61fc4eb4ad1e..59c25568cfe9 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-spec/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-spec
pom
diff --git a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-template/pom.xml b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-template/pom.xml
index 213cadba591f..10d666b332c7 100644
--- a/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-template/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/jetty-ee10-demo-template/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-demo-template
jar
diff --git a/jetty-ee10/jetty-ee10-demos/pom.xml b/jetty-ee10/jetty-ee10-demos/pom.xml
index d0985e8168dd..9398fb0a4d4f 100644
--- a/jetty-ee10/jetty-ee10-demos/pom.xml
+++ b/jetty-ee10/jetty-ee10-demos/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.demos
jetty-ee10-demos
diff --git a/jetty-ee10/jetty-ee10-examples/pom.xml b/jetty-ee10/jetty-ee10-examples/pom.xml
index 63267ad469bb..f2b3a1a5faa9 100644
--- a/jetty-ee10/jetty-ee10-examples/pom.xml
+++ b/jetty-ee10/jetty-ee10-examples/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-examples
EE10 :: Examples
diff --git a/jetty-ee10/jetty-ee10-fcgi-proxy/pom.xml b/jetty-ee10/jetty-ee10-fcgi-proxy/pom.xml
index 233a4206d15c..166cb3774a8e 100644
--- a/jetty-ee10/jetty-ee10-fcgi-proxy/pom.xml
+++ b/jetty-ee10/jetty-ee10-fcgi-proxy/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-fcgi-proxy
EE10 :: FCGI Proxy
diff --git a/jetty-ee10/jetty-ee10-glassfish-jstl/pom.xml b/jetty-ee10/jetty-ee10-glassfish-jstl/pom.xml
index 424eb8e9d861..280156fcb696 100644
--- a/jetty-ee10/jetty-ee10-glassfish-jstl/pom.xml
+++ b/jetty-ee10/jetty-ee10-glassfish-jstl/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-glassfish-jstl
jar
diff --git a/jetty-ee10/jetty-ee10-home/pom.xml b/jetty-ee10/jetty-ee10-home/pom.xml
index 06be487babe1..097388d0c516 100644
--- a/jetty-ee10/jetty-ee10-home/pom.xml
+++ b/jetty-ee10/jetty-ee10-home/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-ee10-home
diff --git a/jetty-ee10/jetty-ee10-jaspi/pom.xml b/jetty-ee10/jetty-ee10-jaspi/pom.xml
index 691c3cc11462..6dc3acc69037 100644
--- a/jetty-ee10/jetty-ee10-jaspi/pom.xml
+++ b/jetty-ee10/jetty-ee10-jaspi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-jaspi
EE10 :: JASPI
diff --git a/jetty-ee10/jetty-ee10-jndi/pom.xml b/jetty-ee10/jetty-ee10-jndi/pom.xml
index 71487ecd3507..549e1bd800b6 100644
--- a/jetty-ee10/jetty-ee10-jndi/pom.xml
+++ b/jetty-ee10/jetty-ee10-jndi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-jndi
EE10 :: JNDI
diff --git a/jetty-ee10/jetty-ee10-jspc-maven-plugin/pom.xml b/jetty-ee10/jetty-ee10-jspc-maven-plugin/pom.xml
index f83817f0c664..cb55ba340ef2 100644
--- a/jetty-ee10/jetty-ee10-jspc-maven-plugin/pom.xml
+++ b/jetty-ee10/jetty-ee10-jspc-maven-plugin/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-jspc-maven-plugin
maven-plugin
diff --git a/jetty-ee10/jetty-ee10-maven-plugin/pom.xml b/jetty-ee10/jetty-ee10-maven-plugin/pom.xml
index 96517efa9ebe..7e0bfbc0f3ca 100644
--- a/jetty-ee10/jetty-ee10-maven-plugin/pom.xml
+++ b/jetty-ee10/jetty-ee10-maven-plugin/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-ee10-maven-plugin
diff --git a/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-alpn/pom.xml b/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-alpn/pom.xml
index 37c2aae1c09a..c76bcfcb45d5 100644
--- a/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-alpn/pom.xml
+++ b/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-alpn/pom.xml
@@ -7,7 +7,7 @@
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-osgi-alpn
jar
diff --git a/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-boot-jsp/pom.xml b/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-boot-jsp/pom.xml
index a14d3c473e80..ab763ab95619 100644
--- a/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-boot-jsp/pom.xml
+++ b/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-boot-jsp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-osgi-boot-jsp
EE10 :: OSGi :: Boot JSP
diff --git a/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-boot/pom.xml b/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-boot/pom.xml
index acf74e8d270d..5e9524653c23 100644
--- a/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-boot/pom.xml
+++ b/jetty-ee10/jetty-ee10-osgi/jetty-ee10-osgi-boot/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-osgi-boot
EE10 :: OSGi :: Boot
diff --git a/jetty-ee10/jetty-ee10-osgi/pom.xml b/jetty-ee10/jetty-ee10-osgi/pom.xml
index 09d75865c5ee..d7017a480d7e 100644
--- a/jetty-ee10/jetty-ee10-osgi/pom.xml
+++ b/jetty-ee10/jetty-ee10-osgi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi
diff --git a/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-fragment/pom.xml b/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-fragment/pom.xml
index a2a55030127d..3942fffc4b57 100644
--- a/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-fragment/pom.xml
+++ b/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-fragment/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee10-osgi-fragment
EE10 :: OSGi :: WebApp Fragment
diff --git a/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-server/pom.xml b/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-server/pom.xml
index a0ec2b531db9..d23f883cf617 100644
--- a/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-server/pom.xml
+++ b/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-server/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee10-osgi-server
EE10 :: OSGi :: Server
diff --git a/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-webapp-resources/pom.xml b/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-webapp-resources/pom.xml
index f44b03c8b8ca..bc624703d81f 100644
--- a/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-webapp-resources/pom.xml
+++ b/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi-webapp-resources/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee10-osgi-webapp-resources
war
diff --git a/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi/pom.xml b/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi/pom.xml
index 582d5cca8cfb..b5b5a20f5c49 100644
--- a/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi/pom.xml
+++ b/jetty-ee10/jetty-ee10-osgi/test-jetty-ee10-osgi/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10.osgi
jetty-ee10-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee10-osgi
EE10 :: OSGi :: Test
diff --git a/jetty-ee10/jetty-ee10-plus/pom.xml b/jetty-ee10/jetty-ee10-plus/pom.xml
index a2b5d0649adb..c32d2105c458 100644
--- a/jetty-ee10/jetty-ee10-plus/pom.xml
+++ b/jetty-ee10/jetty-ee10-plus/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-plus
EE10 :: Plus
diff --git a/jetty-ee10/jetty-ee10-proxy/pom.xml b/jetty-ee10/jetty-ee10-proxy/pom.xml
index 78ee94ce6514..a40f7d32dc80 100644
--- a/jetty-ee10/jetty-ee10-proxy/pom.xml
+++ b/jetty-ee10/jetty-ee10-proxy/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-proxy
EE10 :: Proxy
diff --git a/jetty-ee10/jetty-ee10-quickstart/pom.xml b/jetty-ee10/jetty-ee10-quickstart/pom.xml
index c834daf9302a..b114f56b6b37 100644
--- a/jetty-ee10/jetty-ee10-quickstart/pom.xml
+++ b/jetty-ee10/jetty-ee10-quickstart/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-quickstart
EE10 :: Quick Start
diff --git a/jetty-ee10/jetty-ee10-runner/pom.xml b/jetty-ee10/jetty-ee10-runner/pom.xml
index 97c900f5eab3..ae4b4e5fbef0 100644
--- a/jetty-ee10/jetty-ee10-runner/pom.xml
+++ b/jetty-ee10/jetty-ee10-runner/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-runner
EE10 :: Runner
diff --git a/jetty-ee10/jetty-ee10-servlet/pom.xml b/jetty-ee10/jetty-ee10-servlet/pom.xml
index 54d49a30a76e..05d007cc8569 100644
--- a/jetty-ee10/jetty-ee10-servlet/pom.xml
+++ b/jetty-ee10/jetty-ee10-servlet/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-servlet
EE10 :: Servlet
diff --git a/jetty-ee10/jetty-ee10-servlets/pom.xml b/jetty-ee10/jetty-ee10-servlets/pom.xml
index 498061cda4c0..f5c2ce54ae0a 100644
--- a/jetty-ee10/jetty-ee10-servlets/pom.xml
+++ b/jetty-ee10/jetty-ee10-servlets/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-servlets
EE10 :: Utility Servlets and Filters
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-bad-websocket-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-bad-websocket-webapp/pom.xml
index 83fc80420403..23c4e12b4345 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-bad-websocket-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-bad-websocket-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-bad-websocket-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-badinit-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-badinit-webapp/pom.xml
index 06c7f381f30b..af88ea0fdfad 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-badinit-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-badinit-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-badinit-webapp
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-cdi-common-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-cdi-common-webapp/pom.xml
index 5ee0b86f9970..dc6525bcc813 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-cdi-common-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-cdi-common-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-cdi-common-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-cdi/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-cdi/pom.xml
index 0959bc4dabc7..904ce7b2fc7e 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-cdi/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-cdi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-cdi
jar
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-client-transports/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-client-transports/pom.xml
index 5afa9f495d89..6badc9ef8dd4 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-client-transports/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-client-transports/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-client-transports
jar
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-felix-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-felix-webapp/pom.xml
index c15b56fc29ef..0cdc0981c3dc 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-felix-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-felix-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-felix-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-http2-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-http2-webapp/pom.xml
index 32fe758c9a41..b8f12741a359 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-http2-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-http2-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-http2-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-integration/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-integration/pom.xml
index 47fdf6a2a1a8..ebdad4f8ba09 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-integration/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-integration/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-integration
jar
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jersey/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jersey/pom.xml
index e59ce0d08b40..083bfeb65440 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jersey/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jersey/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-jersey
jar
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/jetty-ee10-jmx-webapp-it/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/jetty-ee10-jmx-webapp-it/pom.xml
index 2189e7b17148..fab93f84c7d3 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/jetty-ee10-jmx-webapp-it/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/jetty-ee10-jmx-webapp-it/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-jmx
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-jmx-webapp-it
jar
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/jetty-ee10-jmx-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/jetty-ee10-jmx-webapp/pom.xml
index 0fec3c131c53..6291329c45a5 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/jetty-ee10-jmx-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/jetty-ee10-jmx-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-jmx
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-jmx-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/pom.xml
index dc1b2aa95068..9892f3147517 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jmx/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-jmx
pom
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jndi/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jndi/pom.xml
index 459ae96440eb..c8059e23bc8a 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jndi/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-jndi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-ee10-test-jndi
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-log4j2-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-log4j2-webapp/pom.xml
index d863d7c7d5df..4c27777aa85c 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-log4j2-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-log4j2-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-log4j2-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-loginservice/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-loginservice/pom.xml
index eeda68caf380..17a2333e78bb 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-loginservice/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-loginservice/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-loginservice
EE10 :: Tests :: Login Service
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-openid-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-openid-webapp/pom.xml
index 6e5f2c2e6eca..f97dea463f8e 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-openid-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-openid-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-openid-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-owb-cdi-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-owb-cdi-webapp/pom.xml
index 0c9ddb1cba66..165c99b5fc32 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-owb-cdi-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-owb-cdi-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-owb-cdi-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-quickstart/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-quickstart/pom.xml
index ef1e106dfd82..52ec13ea9727 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-quickstart/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-quickstart/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-quickstart
EE10 :: Tests :: Quick Start
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-common/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-common/pom.xml
index f7bc10ef292c..dc71c4a0fad8 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-common/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-common/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-sessions-common
EE10 :: Tests :: Sessions :: Common
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-file/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-file/pom.xml
index 7bd80e18de00..b583d08cc0b5 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-file/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-file/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-sessions-file
EE10 :: Tests :: Sessions :: File
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-gcloud/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-gcloud/pom.xml
index 988f408abe4d..cb4b7c465866 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-gcloud/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-gcloud/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-sessions-gcloud
EE10 :: Tests :: Sessions :: GCloud
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-hazelcast/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-hazelcast/pom.xml
index b2126e5566a3..345561563110 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-hazelcast/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-hazelcast/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-sessions-hazelcast
EE10 :: Tests :: Sessions :: Hazelcast
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-infinispan/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-infinispan/pom.xml
index dc9ba559b4d8..c4e465c51adf 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-infinispan/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-infinispan/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-sessions-infinispan
EE10 :: Tests :: Sessions :: Infinispan
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-jdbc/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-jdbc/pom.xml
index 071665ccc5c9..c2da378e3150 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-jdbc/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-jdbc/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-sessions-jdbc
EE10 :: Tests :: Sessions :: JDBC
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-memcached/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-memcached/pom.xml
index a2e2c0721176..b23ab1edbfb1 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-memcached/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-memcached/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-sessions-memcached
EE10 :: Tests :: Sessions :: Memcached
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-mongodb/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-mongodb/pom.xml
index 4fa0862224e0..13e08b50b11c 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-mongodb/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/jetty-ee10-test-sessions-mongodb/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-sessions-mongodb
EE10 :: Tests :: Sessions :: Mongo
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/pom.xml
index 71c19f4cae82..e5394500972e 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-sessions
pom
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-simple-session-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-simple-session-webapp/pom.xml
index 32b46c387480..05d606255009 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-simple-session-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-simple-session-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-simple-session-webapp
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-webapp-rfc2616/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-webapp-rfc2616/pom.xml
index 284820260ef7..1a7d47d4da59 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-webapp-rfc2616/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-webapp-rfc2616/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-webapp-rfc2616
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-client-provided-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-client-provided-webapp/pom.xml
index 69ca6fc10199..924b98b54499 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-client-provided-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-client-provided-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-websocket-client-provided-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-client-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-client-webapp/pom.xml
index c5ec451736d6..c97135630cb9 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-client-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-client-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-websocket-client-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-webapp/pom.xml
index 6e7a9044b7b6..306855951aca 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-websocket-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-websocket-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-weld-cdi-webapp/pom.xml b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-weld-cdi-webapp/pom.xml
index 747eb65ff9d1..64f5cf55b38c 100644
--- a/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-weld-cdi-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/jetty-ee10-test-weld-cdi-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-test-weld-cdi-webapp
war
diff --git a/jetty-ee10/jetty-ee10-tests/pom.xml b/jetty-ee10/jetty-ee10-tests/pom.xml
index 5414e9cbd187..85b34d0086d0 100644
--- a/jetty-ee10/jetty-ee10-tests/pom.xml
+++ b/jetty-ee10/jetty-ee10-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-ee10-tests
diff --git a/jetty-ee10/jetty-ee10-webapp/pom.xml b/jetty-ee10/jetty-ee10-webapp/pom.xml
index 01c38445b186..2868e9b550ee 100644
--- a/jetty-ee10/jetty-ee10-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-webapp
EE10 :: WebApp
diff --git a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-client-webapp/pom.xml b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-client-webapp/pom.xml
index 61e78c148772..53d80e20e1ac 100644
--- a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-client-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-client-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-websocket-jakarta-client-webapp
EE10 :: Websocket :: Jakarta Client WebApp
diff --git a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-client/pom.xml b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-client/pom.xml
index 978015954cc0..e2a93471ef78 100644
--- a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-client/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-websocket-jakarta-client
EE10 :: Websocket :: Jakarta Client
diff --git a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-common/pom.xml b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-common/pom.xml
index 340404240905..8ba2fd5e469e 100644
--- a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-common/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-websocket-jakarta-common
EE10 :: Websocket :: Jakarta Common
diff --git a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-server/pom.xml b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-server/pom.xml
index dfa499eb6a5a..bbef0eca7e42 100644
--- a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-server/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-websocket-jakarta-server
EE10 :: Websocket :: Jakarta Server
diff --git a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-tests/pom.xml b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-tests/pom.xml
index 6d293d7a2865..21454129fb2e 100644
--- a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-tests/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jakarta-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-websocket-jakarta-tests
EE10 :: Websocket :: Jakarta Tests
diff --git a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-client-webapp/pom.xml b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-client-webapp/pom.xml
index 24b2bf144e9e..9673a7f0ba49 100644
--- a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-client-webapp/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-client-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-websocket-jetty-client-webapp
EE10 :: Websocket :: Jetty Client WebApp
diff --git a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-server/pom.xml b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-server/pom.xml
index d373d5207b5e..34cd15ef28d2 100644
--- a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-server/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-websocket-jetty-server
EE10 :: Websocket :: Jetty Server
diff --git a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-tests/pom.xml b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-tests/pom.xml
index 10f528842cfa..cc065659bb42 100644
--- a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-tests/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-jetty-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-websocket-jetty-tests
EE10 :: Websocket :: Jetty Tests
diff --git a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-servlet/pom.xml b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-servlet/pom.xml
index 271840606b10..a38ddd8da1e5 100644
--- a/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-servlet/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/jetty-ee10-websocket-servlet/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee10-websocket-servlet
EE10 :: Websocket :: Servlet
diff --git a/jetty-ee10/jetty-ee10-websocket/pom.xml b/jetty-ee10/jetty-ee10-websocket/pom.xml
index 68feec9af4a6..0dec01505bfc 100644
--- a/jetty-ee10/jetty-ee10-websocket/pom.xml
+++ b/jetty-ee10/jetty-ee10-websocket/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee10
jetty-ee10
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10.websocket
jetty-ee10-websocket
diff --git a/jetty-ee10/pom.xml b/jetty-ee10/pom.xml
index e581c54c8ad4..0bfc5cccb196 100644
--- a/jetty-ee10/pom.xml
+++ b/jetty-ee10/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee10
jetty-ee10
diff --git a/jetty-ee8/jetty-ee8-annotations/pom.xml b/jetty-ee8/jetty-ee8-annotations/pom.xml
index 4f8a951a27a3..48c2a4ca8bb1 100644
--- a/jetty-ee8/jetty-ee8-annotations/pom.xml
+++ b/jetty-ee8/jetty-ee8-annotations/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-annotations
EE8 :: Servlet Annotations
diff --git a/jetty-ee8/jetty-ee8-apache-jsp/pom.xml b/jetty-ee8/jetty-ee8-apache-jsp/pom.xml
index 5730dfdf19b8..f2c53afdf6ab 100644
--- a/jetty-ee8/jetty-ee8-apache-jsp/pom.xml
+++ b/jetty-ee8/jetty-ee8-apache-jsp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-apache-jsp
EE8 :: Apache JSP
diff --git a/jetty-ee8/jetty-ee8-bom/pom.xml b/jetty-ee8/jetty-ee8-bom/pom.xml
index 21ed01cebd76..98e4d626b529 100644
--- a/jetty-ee8/jetty-ee8-bom/pom.xml
+++ b/jetty-ee8/jetty-ee8-bom/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-bom
@@ -19,117 +19,117 @@
org.eclipse.jetty.ee8
jetty-ee8-annotations
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-apache-jsp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-glassfish-jstl
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-jndi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-nested
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-openid
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-plus
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-proxy
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-quickstart
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-security
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-servlet
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-servlets
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8-webapp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-javax-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-javax-client-webapp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-javax-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-javax-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-jetty-api
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-jetty-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-jetty-client-webapp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-jetty-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-jetty-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket-servlet
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-jar/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-jar/pom.xml
index 23595f462d83..b23080a380f0 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-jar/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-jar/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demo-async-rest
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-async-rest-jar
jar
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-server/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-server/pom.xml
index 779af37ac7a6..b1f20c936cee 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-server/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demo-async-rest
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-async-rest-server
jar
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-webapp/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-webapp/pom.xml
index 3ec0807775f2..88cc7989bd9c 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/jetty-ee8-demo-async-rest-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demo-async-rest
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-async-rest-webapp
war
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/pom.xml
index e1527305876e..d764b12949bc 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-async-rest/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-async-rest
pom
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jaas-webapp/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jaas-webapp/pom.xml
index 32d6020271cb..e7c4c2fc3fdc 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jaas-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jaas-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-jaas-webapp
war
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jetty-webapp/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jetty-webapp/pom.xml
index b55b858badef..5b622fc75a73 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jetty-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jetty-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-jetty-webapp
war
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jndi-webapp/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jndi-webapp/pom.xml
index 7532f1b94790..da476e361a32 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jndi-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jndi-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-jndi-webapp
war
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jsp-webapp/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jsp-webapp/pom.xml
index 0bd09f91c6f1..57b9982a63a0 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jsp-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-jsp-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-jsp-webapp
war
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-mock-resources/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-mock-resources/pom.xml
index 276e85d3fc6a..fc43585aa699 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-mock-resources/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-mock-resources/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-mock-resources
jar
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-proxy-webapp/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-proxy-webapp/pom.xml
index 8930668e966b..f5741f734977 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-proxy-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-proxy-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-proxy-webapp
war
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-simple-webapp/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-simple-webapp/pom.xml
index 1e452e5ce0bd..da4d0a499ade 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-simple-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-simple-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-simple-webapp
war
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-container-initializer/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-container-initializer/pom.xml
index 1171d8ff6c9a..8b628c0470b6 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-container-initializer/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-container-initializer/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demo-spec
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-container-initializer
jar
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-spec-webapp/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-spec-webapp/pom.xml
index 6a44980be8b1..06c0f32a79a4 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-spec-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-spec-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demo-spec
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-spec-webapp
war
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-web-fragment/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-web-fragment/pom.xml
index 6c6d92001f86..877181c5b4f8 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-web-fragment/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/jetty-ee8-demo-web-fragment/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demo-spec
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-web-fragment
jar
diff --git a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/pom.xml b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/pom.xml
index 619e47d5f5b4..5f1d37533fd1 100644
--- a/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/jetty-ee8-demo-spec/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-demo-spec
pom
diff --git a/jetty-ee8/jetty-ee8-demos/pom.xml b/jetty-ee8/jetty-ee8-demos/pom.xml
index 0279d75d00bb..1d0cad752e3a 100644
--- a/jetty-ee8/jetty-ee8-demos/pom.xml
+++ b/jetty-ee8/jetty-ee8-demos/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.demos
jetty-ee8-demos
diff --git a/jetty-ee8/jetty-ee8-glassfish-jstl/pom.xml b/jetty-ee8/jetty-ee8-glassfish-jstl/pom.xml
index 7b887e33e711..1de6f77af8cc 100644
--- a/jetty-ee8/jetty-ee8-glassfish-jstl/pom.xml
+++ b/jetty-ee8/jetty-ee8-glassfish-jstl/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-glassfish-jstl
jar
diff --git a/jetty-ee8/jetty-ee8-home/pom.xml b/jetty-ee8/jetty-ee8-home/pom.xml
index 356362613e60..00f883939e40 100644
--- a/jetty-ee8/jetty-ee8-home/pom.xml
+++ b/jetty-ee8/jetty-ee8-home/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-home
pom
diff --git a/jetty-ee8/jetty-ee8-jaspi/pom.xml b/jetty-ee8/jetty-ee8-jaspi/pom.xml
index 876f1db1ef2c..5988cdba8040 100644
--- a/jetty-ee8/jetty-ee8-jaspi/pom.xml
+++ b/jetty-ee8/jetty-ee8-jaspi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-jaspi
EE8 :: Jetty :: JASPI Security
diff --git a/jetty-ee8/jetty-ee8-jndi/pom.xml b/jetty-ee8/jetty-ee8-jndi/pom.xml
index 9b62c3d5e15e..75e149906f1d 100644
--- a/jetty-ee8/jetty-ee8-jndi/pom.xml
+++ b/jetty-ee8/jetty-ee8-jndi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-jndi
EE8 :: JNDI
diff --git a/jetty-ee8/jetty-ee8-jspc-maven-plugin/pom.xml b/jetty-ee8/jetty-ee8-jspc-maven-plugin/pom.xml
index 59cdb414e454..0bf27124d05a 100644
--- a/jetty-ee8/jetty-ee8-jspc-maven-plugin/pom.xml
+++ b/jetty-ee8/jetty-ee8-jspc-maven-plugin/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-jspc-maven-plugin
maven-plugin
diff --git a/jetty-ee8/jetty-ee8-maven-plugin/pom.xml b/jetty-ee8/jetty-ee8-maven-plugin/pom.xml
index 49278e9172a5..41ba093d849a 100644
--- a/jetty-ee8/jetty-ee8-maven-plugin/pom.xml
+++ b/jetty-ee8/jetty-ee8-maven-plugin/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-maven-plugin
maven-plugin
diff --git a/jetty-ee8/jetty-ee8-nested/pom.xml b/jetty-ee8/jetty-ee8-nested/pom.xml
index 3f096c20b309..92182f218a63 100644
--- a/jetty-ee8/jetty-ee8-nested/pom.xml
+++ b/jetty-ee8/jetty-ee8-nested/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-nested
EE8 :: Nested
diff --git a/jetty-ee8/jetty-ee8-openid/pom.xml b/jetty-ee8/jetty-ee8-openid/pom.xml
index d990dbd056b5..86d939b1731b 100644
--- a/jetty-ee8/jetty-ee8-openid/pom.xml
+++ b/jetty-ee8/jetty-ee8-openid/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-openid
EE8 :: OpenID
diff --git a/jetty-ee8/jetty-ee8-osgi/jetty-ee8-osgi-boot-jsp/pom.xml b/jetty-ee8/jetty-ee8-osgi/jetty-ee8-osgi-boot-jsp/pom.xml
index 7cdb8f871d17..ac4a9750e55d 100644
--- a/jetty-ee8/jetty-ee8-osgi/jetty-ee8-osgi-boot-jsp/pom.xml
+++ b/jetty-ee8/jetty-ee8-osgi/jetty-ee8-osgi-boot-jsp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.osgi
jetty-ee8-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-osgi-boot-jsp
EE8 :: OSGi :: Boot JSP
diff --git a/jetty-ee8/jetty-ee8-osgi/jetty-ee8-osgi-boot/pom.xml b/jetty-ee8/jetty-ee8-osgi/jetty-ee8-osgi-boot/pom.xml
index 58fd1a384a91..610c97ef0fd1 100644
--- a/jetty-ee8/jetty-ee8-osgi/jetty-ee8-osgi-boot/pom.xml
+++ b/jetty-ee8/jetty-ee8-osgi/jetty-ee8-osgi-boot/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.osgi
jetty-ee8-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-osgi-boot
EE8 :: OSGi :: Boot
diff --git a/jetty-ee8/jetty-ee8-osgi/pom.xml b/jetty-ee8/jetty-ee8-osgi/pom.xml
index fffd7efb934c..94416a344f4e 100644
--- a/jetty-ee8/jetty-ee8-osgi/pom.xml
+++ b/jetty-ee8/jetty-ee8-osgi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8.osgi
jetty-ee8-osgi
diff --git a/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-fragment/pom.xml b/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-fragment/pom.xml
index 0a9efe568adf..0187e0c9b69e 100644
--- a/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-fragment/pom.xml
+++ b/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-fragment/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.osgi
jetty-ee8-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee8-osgi-fragment
EE8 :: OSGi :: WebApp Fragment
diff --git a/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-server/pom.xml b/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-server/pom.xml
index 5799780d1c02..0c8d9482b24d 100644
--- a/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-server/pom.xml
+++ b/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-server/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.osgi
jetty-ee8-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee8-osgi-server
EE8 :: OSGi :: Server
diff --git a/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-webapp-resources/pom.xml b/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-webapp-resources/pom.xml
index c19320bf684b..002bbaeb8aa9 100644
--- a/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-webapp-resources/pom.xml
+++ b/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi-webapp-resources/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.osgi
jetty-ee8-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee8-osgi-webapp-resources
war
diff --git a/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi/pom.xml b/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi/pom.xml
index 341aef8bad57..379058da1e04 100644
--- a/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi/pom.xml
+++ b/jetty-ee8/jetty-ee8-osgi/test-jetty-ee8-osgi/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8.osgi
jetty-ee8-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee8-osgi
EE8 :: OSGi :: Test
diff --git a/jetty-ee8/jetty-ee8-plus/pom.xml b/jetty-ee8/jetty-ee8-plus/pom.xml
index 67567cf87172..086af7984fa3 100644
--- a/jetty-ee8/jetty-ee8-plus/pom.xml
+++ b/jetty-ee8/jetty-ee8-plus/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-plus
EE8 :: Plus
diff --git a/jetty-ee8/jetty-ee8-proxy/pom.xml b/jetty-ee8/jetty-ee8-proxy/pom.xml
index f400d12ccda3..8512692ce252 100644
--- a/jetty-ee8/jetty-ee8-proxy/pom.xml
+++ b/jetty-ee8/jetty-ee8-proxy/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-proxy
EE8 :: Proxy
diff --git a/jetty-ee8/jetty-ee8-quickstart/pom.xml b/jetty-ee8/jetty-ee8-quickstart/pom.xml
index 717ca358cab7..49da97609257 100644
--- a/jetty-ee8/jetty-ee8-quickstart/pom.xml
+++ b/jetty-ee8/jetty-ee8-quickstart/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-quickstart
EE8 :: Quick Start
diff --git a/jetty-ee8/jetty-ee8-runner/pom.xml b/jetty-ee8/jetty-ee8-runner/pom.xml
index 247ed87961f6..26be34e34472 100644
--- a/jetty-ee8/jetty-ee8-runner/pom.xml
+++ b/jetty-ee8/jetty-ee8-runner/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-runner
EE8 :: Runner
diff --git a/jetty-ee8/jetty-ee8-security/pom.xml b/jetty-ee8/jetty-ee8-security/pom.xml
index cfeaf3972238..e2585f748434 100644
--- a/jetty-ee8/jetty-ee8-security/pom.xml
+++ b/jetty-ee8/jetty-ee8-security/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-security
EE8 :: Security
diff --git a/jetty-ee8/jetty-ee8-servlet/pom.xml b/jetty-ee8/jetty-ee8-servlet/pom.xml
index db8c5ccc937f..728605e5f7ed 100644
--- a/jetty-ee8/jetty-ee8-servlet/pom.xml
+++ b/jetty-ee8/jetty-ee8-servlet/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-servlet
EE8 :: Servlet
diff --git a/jetty-ee8/jetty-ee8-servlets/pom.xml b/jetty-ee8/jetty-ee8-servlets/pom.xml
index 7f4c3edc7bcb..d753b347dd29 100644
--- a/jetty-ee8/jetty-ee8-servlets/pom.xml
+++ b/jetty-ee8/jetty-ee8-servlets/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-servlets
EE8 :: Utility Servlets and Filters
diff --git a/jetty-ee8/jetty-ee8-webapp/pom.xml b/jetty-ee8/jetty-ee8-webapp/pom.xml
index 48491a2ffbd8..9b13fe80ce07 100644
--- a/jetty-ee8/jetty-ee8-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-webapp
EE8 :: WebApp
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-client-webapp/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-client-webapp/pom.xml
index 9f207dc9fe33..9963136730d9 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-client-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-client-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-ee8-websocket-javax-client-webapp
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-client/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-client/pom.xml
index ee852a48e80f..dc80e0622c80 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-client/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-ee8-websocket-javax-client
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-common/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-common/pom.xml
index 19191d0308d7..6e5ac8be2681 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-common/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-javax-common
EE8 :: Websocket :: Javax Common
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-server/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-server/pom.xml
index 90adfa8a9ce7..f3b1b3d621b2 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-server/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-javax-server
EE8 :: Websocket :: Javax Server
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-tests/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-tests/pom.xml
index 4ab420386855..4ec5b85237ec 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-tests/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-javax-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-javax-tests
EE8 :: Websocket :: Javax Tests
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-api/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-api/pom.xml
index be90481c7b76..eafc007cfcfd 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-api/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-api/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-jetty-api
EE8 :: Websocket :: Jetty API
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-client-webapp/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-client-webapp/pom.xml
index 7f6f36e805e0..b49770a8c51a 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-client-webapp/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-client-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-jetty-client-webapp
EE8 :: Websocket :: Jetty Client WebApp
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-client/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-client/pom.xml
index c419a9e3e471..3d10896940bf 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-client/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-jetty-client
EE8 :: Websocket :: Jetty Client
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-common/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-common/pom.xml
index ea936b8737f9..f303ae12161f 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-common/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-jetty-common
EE8 :: Websocket :: Jetty Common
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-server/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-server/pom.xml
index 6129b7803f4a..ca8b771e451c 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-server/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-jetty-server
EE8 :: Websocket :: Jetty Server
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-tests/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-tests/pom.xml
index c187157c384b..fe139274b2cf 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-tests/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-jetty-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-jetty-tests
EE8 :: Websocket :: Jetty Tests
diff --git a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-servlet/pom.xml b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-servlet/pom.xml
index e3025905ed1b..31590d88e4da 100644
--- a/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-servlet/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/jetty-ee8-websocket-servlet/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8.websocket
jetty-ee8-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee8-websocket-servlet
EE8 :: Websocket :: Servlet
diff --git a/jetty-ee8/jetty-ee8-websocket/pom.xml b/jetty-ee8/jetty-ee8-websocket/pom.xml
index 1855566f3007..c29dc4abd1f3 100644
--- a/jetty-ee8/jetty-ee8-websocket/pom.xml
+++ b/jetty-ee8/jetty-ee8-websocket/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee8
jetty-ee8
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
org.eclipse.jetty.ee8.websocket
diff --git a/jetty-ee8/pom.xml b/jetty-ee8/pom.xml
index 11ae01347ed1..775fe85c921a 100644
--- a/jetty-ee8/pom.xml
+++ b/jetty-ee8/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee8
jetty-ee8
diff --git a/jetty-ee9/jetty-ee9-annotations/pom.xml b/jetty-ee9/jetty-ee9-annotations/pom.xml
index f8b95fad29b3..4d43b84f49f3 100644
--- a/jetty-ee9/jetty-ee9-annotations/pom.xml
+++ b/jetty-ee9/jetty-ee9-annotations/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-annotations
EE9 :: Servlet Annotations
diff --git a/jetty-ee9/jetty-ee9-apache-jsp/pom.xml b/jetty-ee9/jetty-ee9-apache-jsp/pom.xml
index de2b3e75e231..5701819ad722 100644
--- a/jetty-ee9/jetty-ee9-apache-jsp/pom.xml
+++ b/jetty-ee9/jetty-ee9-apache-jsp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-apache-jsp
EE9 :: Apache JSP
diff --git a/jetty-ee9/jetty-ee9-bom/pom.xml b/jetty-ee9/jetty-ee9-bom/pom.xml
index f6020bf29c6a..8e120b4ca88b 100644
--- a/jetty-ee9/jetty-ee9-bom/pom.xml
+++ b/jetty-ee9/jetty-ee9-bom/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-bom
@@ -19,147 +19,147 @@
org.eclipse.jetty.ee9
jetty-ee9-annotations
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-apache-jsp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-cdi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-fcgi-proxy
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-glassfish-jstl
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-jaspi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-jndi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-nested
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-openid
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-plus
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-proxy
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-quickstart
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-runner
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-security
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-servlet
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-servlets
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9-webapp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.osgi
jetty-ee9-osgi-boot
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.osgi
jetty-ee9-osgi-boot-jsp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-jakarta-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-jakarta-client-webapp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-jakarta-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-jakarta-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-jetty-api
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-jetty-client
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-jetty-client-webapp
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-jetty-common
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-jetty-server
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket-servlet
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
diff --git a/jetty-ee9/jetty-ee9-cdi/pom.xml b/jetty-ee9/jetty-ee9-cdi/pom.xml
index 2d4a5dbf84a5..f8d22addbefa 100644
--- a/jetty-ee9/jetty-ee9-cdi/pom.xml
+++ b/jetty-ee9/jetty-ee9-cdi/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-cdi
jar
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-jar/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-jar/pom.xml
index bd824710ea19..2173f1017b74 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-jar/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-jar/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demo-async-rest
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-async-rest-jar
jar
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-server/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-server/pom.xml
index 11ac0921b860..ef0badd720c3 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-server/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demo-async-rest
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-async-rest-server
jar
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-webapp/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-webapp/pom.xml
index 099b629eb476..ed54dd484cc3 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/jetty-ee9-demo-async-rest-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demo-async-rest
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-async-rest-webapp
war
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/pom.xml
index 6460fb0e6efc..fb3935c4964f 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-async-rest/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-async-rest
pom
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-embedded/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-embedded/pom.xml
index bca52588c2d2..79bacc3ad552 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-embedded/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-embedded/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-embedded
EE9 :: Demo :: Embedded Jetty
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jaas-webapp/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jaas-webapp/pom.xml
index 15b82148b46b..139feecc431e 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jaas-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jaas-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-jaas-webapp
war
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jetty-webapp/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jetty-webapp/pom.xml
index eaefd38e9566..6077cdae97b8 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jetty-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jetty-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-jetty-webapp
war
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jndi-webapp/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jndi-webapp/pom.xml
index 4513e2e51393..86c946cd5d4a 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jndi-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jndi-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-jndi-webapp
war
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jsp-webapp/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jsp-webapp/pom.xml
index b13069a06be0..b7c8be49c7d7 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jsp-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-jsp-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-jsp-webapp
war
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-mock-resources/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-mock-resources/pom.xml
index cdacbffa7c25..4e994e45b645 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-mock-resources/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-mock-resources/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-mock-resources
jar
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-proxy-webapp/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-proxy-webapp/pom.xml
index 75e1d0915edc..babc654893dc 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-proxy-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-proxy-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-proxy-webapp
war
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-simple-webapp/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-simple-webapp/pom.xml
index 66f9ba0e8ebb..5b4b9bcb3bc9 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-simple-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-simple-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-simple-webapp
war
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-container-initializer/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-container-initializer/pom.xml
index d56b2d707012..0117ddde805c 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-container-initializer/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-container-initializer/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../../pom.xml
jetty-ee9-demo-container-initializer
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-spec-webapp/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-spec-webapp/pom.xml
index 0e2e3b4e2511..b798a934dc5a 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-spec-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-spec-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../../pom.xml
jetty-ee9-demo-spec-webapp
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-web-fragment/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-web-fragment/pom.xml
index 2a766cdb63ad..6daabb458629 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-web-fragment/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/jetty-ee9-demo-web-fragment/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../../pom.xml
jetty-ee9-demo-web-fragment
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/pom.xml
index 0fe8ba73d6e3..e759c9c4db9e 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-spec/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-spec
pom
diff --git a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-template/pom.xml b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-template/pom.xml
index 0a4a5a03c857..546a01131f1f 100644
--- a/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-template/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/jetty-ee9-demo-template/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-demo-template
jar
diff --git a/jetty-ee9/jetty-ee9-demos/pom.xml b/jetty-ee9/jetty-ee9-demos/pom.xml
index 7c895eb52957..d20b2efd1d55 100644
--- a/jetty-ee9/jetty-ee9-demos/pom.xml
+++ b/jetty-ee9/jetty-ee9-demos/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.demos
jetty-ee9-demos
diff --git a/jetty-ee9/jetty-ee9-fcgi-proxy/pom.xml b/jetty-ee9/jetty-ee9-fcgi-proxy/pom.xml
index 0611382d9f00..31556e43f609 100644
--- a/jetty-ee9/jetty-ee9-fcgi-proxy/pom.xml
+++ b/jetty-ee9/jetty-ee9-fcgi-proxy/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-fcgi-proxy
EE9 :: FCGI Proxy
diff --git a/jetty-ee9/jetty-ee9-glassfish-jstl/pom.xml b/jetty-ee9/jetty-ee9-glassfish-jstl/pom.xml
index 3a3a2d437975..7e64b7e59324 100644
--- a/jetty-ee9/jetty-ee9-glassfish-jstl/pom.xml
+++ b/jetty-ee9/jetty-ee9-glassfish-jstl/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-glassfish-jstl
jar
diff --git a/jetty-ee9/jetty-ee9-home/pom.xml b/jetty-ee9/jetty-ee9-home/pom.xml
index 753c3d6fe010..d3ef047b0ed8 100644
--- a/jetty-ee9/jetty-ee9-home/pom.xml
+++ b/jetty-ee9/jetty-ee9-home/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-home
pom
diff --git a/jetty-ee9/jetty-ee9-jaspi/pom.xml b/jetty-ee9/jetty-ee9-jaspi/pom.xml
index fe75c2daac83..129467ad4387 100644
--- a/jetty-ee9/jetty-ee9-jaspi/pom.xml
+++ b/jetty-ee9/jetty-ee9-jaspi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-jaspi
EE9 :: JASPI
diff --git a/jetty-ee9/jetty-ee9-jndi/pom.xml b/jetty-ee9/jetty-ee9-jndi/pom.xml
index 96c9ffe683a8..d82edcf111f5 100644
--- a/jetty-ee9/jetty-ee9-jndi/pom.xml
+++ b/jetty-ee9/jetty-ee9-jndi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-jndi
EE9 :: JNDI
diff --git a/jetty-ee9/jetty-ee9-jspc-maven-plugin/pom.xml b/jetty-ee9/jetty-ee9-jspc-maven-plugin/pom.xml
index 402e5da58518..11f9a1d8fc73 100644
--- a/jetty-ee9/jetty-ee9-jspc-maven-plugin/pom.xml
+++ b/jetty-ee9/jetty-ee9-jspc-maven-plugin/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-jspc-maven-plugin
maven-plugin
diff --git a/jetty-ee9/jetty-ee9-maven-plugin/pom.xml b/jetty-ee9/jetty-ee9-maven-plugin/pom.xml
index fdce72ae784e..6caecd7dd165 100644
--- a/jetty-ee9/jetty-ee9-maven-plugin/pom.xml
+++ b/jetty-ee9/jetty-ee9-maven-plugin/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-maven-plugin
maven-plugin
diff --git a/jetty-ee9/jetty-ee9-nested/pom.xml b/jetty-ee9/jetty-ee9-nested/pom.xml
index e412b8080166..c02d12d525c9 100644
--- a/jetty-ee9/jetty-ee9-nested/pom.xml
+++ b/jetty-ee9/jetty-ee9-nested/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-nested
EE9 :: Nested
diff --git a/jetty-ee9/jetty-ee9-openid/pom.xml b/jetty-ee9/jetty-ee9-openid/pom.xml
index 95652e456de5..ca478bc04370 100644
--- a/jetty-ee9/jetty-ee9-openid/pom.xml
+++ b/jetty-ee9/jetty-ee9-openid/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-openid
EE9 :: OpenID
diff --git a/jetty-ee9/jetty-ee9-osgi/jetty-ee9-osgi-boot-jsp/pom.xml b/jetty-ee9/jetty-ee9-osgi/jetty-ee9-osgi-boot-jsp/pom.xml
index 5a6c954e7a86..87a53015b909 100644
--- a/jetty-ee9/jetty-ee9-osgi/jetty-ee9-osgi-boot-jsp/pom.xml
+++ b/jetty-ee9/jetty-ee9-osgi/jetty-ee9-osgi-boot-jsp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.osgi
jetty-ee9-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-osgi-boot-jsp
EE9 :: OSGi :: Boot JSP
diff --git a/jetty-ee9/jetty-ee9-osgi/jetty-ee9-osgi-boot/pom.xml b/jetty-ee9/jetty-ee9-osgi/jetty-ee9-osgi-boot/pom.xml
index c47ddc01725c..27a431db76ff 100644
--- a/jetty-ee9/jetty-ee9-osgi/jetty-ee9-osgi-boot/pom.xml
+++ b/jetty-ee9/jetty-ee9-osgi/jetty-ee9-osgi-boot/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.osgi
jetty-ee9-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-osgi-boot
EE9 :: OSGi :: Boot
diff --git a/jetty-ee9/jetty-ee9-osgi/pom.xml b/jetty-ee9/jetty-ee9-osgi/pom.xml
index 6845f6688887..6e38cd218551 100644
--- a/jetty-ee9/jetty-ee9-osgi/pom.xml
+++ b/jetty-ee9/jetty-ee9-osgi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9.osgi
jetty-ee9-osgi
diff --git a/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-fragment/pom.xml b/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-fragment/pom.xml
index 517eb4d9c1f0..85f26a1b07aa 100644
--- a/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-fragment/pom.xml
+++ b/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-fragment/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.osgi
jetty-ee9-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee9-osgi-fragment
EE9 :: OSGi :: WebApp Fragment
diff --git a/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-server/pom.xml b/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-server/pom.xml
index ff259414fdf0..1b8ef6eea62d 100644
--- a/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-server/pom.xml
+++ b/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-server/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.osgi
jetty-ee9-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee9-osgi-server
EE9 :: OSGi :: Server
diff --git a/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-webapp-resources/pom.xml b/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-webapp-resources/pom.xml
index 2e865c5000d5..da11ef489304 100644
--- a/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-webapp-resources/pom.xml
+++ b/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi-webapp-resources/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.osgi
jetty-ee9-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee9-osgi-webapp-resources
war
diff --git a/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi/pom.xml b/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi/pom.xml
index be09475d3c94..8a0f042a086d 100644
--- a/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi/pom.xml
+++ b/jetty-ee9/jetty-ee9-osgi/test-jetty-ee9-osgi/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9.osgi
jetty-ee9-osgi
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jetty-ee9-osgi
EE9 :: OSGi :: Test
diff --git a/jetty-ee9/jetty-ee9-plus/pom.xml b/jetty-ee9/jetty-ee9-plus/pom.xml
index 857f5ed3db37..aef4b1cc3f06 100644
--- a/jetty-ee9/jetty-ee9-plus/pom.xml
+++ b/jetty-ee9/jetty-ee9-plus/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-plus
EE9 :: Plus
diff --git a/jetty-ee9/jetty-ee9-proxy/pom.xml b/jetty-ee9/jetty-ee9-proxy/pom.xml
index 255c1fe45a99..98e6286a2387 100644
--- a/jetty-ee9/jetty-ee9-proxy/pom.xml
+++ b/jetty-ee9/jetty-ee9-proxy/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-proxy
EE9 :: Proxy
diff --git a/jetty-ee9/jetty-ee9-quickstart/pom.xml b/jetty-ee9/jetty-ee9-quickstart/pom.xml
index 4c1f31c62cff..5bd8136e8ad4 100644
--- a/jetty-ee9/jetty-ee9-quickstart/pom.xml
+++ b/jetty-ee9/jetty-ee9-quickstart/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-quickstart
EE9 :: Quick Start
diff --git a/jetty-ee9/jetty-ee9-runner/pom.xml b/jetty-ee9/jetty-ee9-runner/pom.xml
index f5c4ef3e4fc4..d780ba05f383 100644
--- a/jetty-ee9/jetty-ee9-runner/pom.xml
+++ b/jetty-ee9/jetty-ee9-runner/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-runner
EE9 :: Runner
diff --git a/jetty-ee9/jetty-ee9-security/pom.xml b/jetty-ee9/jetty-ee9-security/pom.xml
index 4a699613d6be..246a9e1cfffb 100644
--- a/jetty-ee9/jetty-ee9-security/pom.xml
+++ b/jetty-ee9/jetty-ee9-security/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-security
EE9 :: Security
diff --git a/jetty-ee9/jetty-ee9-servlet/pom.xml b/jetty-ee9/jetty-ee9-servlet/pom.xml
index 7cde2440e803..87486bc7c58b 100644
--- a/jetty-ee9/jetty-ee9-servlet/pom.xml
+++ b/jetty-ee9/jetty-ee9-servlet/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-servlet
EE9 :: Servlet
diff --git a/jetty-ee9/jetty-ee9-servlets/pom.xml b/jetty-ee9/jetty-ee9-servlets/pom.xml
index ca2db36f5697..31f75cae166d 100644
--- a/jetty-ee9/jetty-ee9-servlets/pom.xml
+++ b/jetty-ee9/jetty-ee9-servlets/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-servlets
EE9 :: Utility Servlets and Filters
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-bad-websocket-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-bad-websocket-webapp/pom.xml
index 31b1a3d59184..d9ef350887f9 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-bad-websocket-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-bad-websocket-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-bad-websocket-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-badinit-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-badinit-webapp/pom.xml
index e5d519b33d5f..809b15cbb0a2 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-badinit-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-badinit-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-badinit-webapp
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-cdi-common-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-cdi-common-webapp/pom.xml
index d81a149fc888..d2814861d91e 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-cdi-common-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-cdi-common-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-cdi-common-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-cdi/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-cdi/pom.xml
index ddd17df222c1..bc53409e720b 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-cdi/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-cdi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-cdi
jar
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-client-transports/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-client-transports/pom.xml
index d677b1b5ca88..9b0dcf76c9e1 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-client-transports/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-client-transports/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-client-transports
jar
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-felix-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-felix-webapp/pom.xml
index d0a055cc2b3d..47ffe006ab7e 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-felix-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-felix-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-felix-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-http2-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-http2-webapp/pom.xml
index 12b0f100376a..190bea6ee138 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-http2-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-http2-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-http2-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-integration/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-integration/pom.xml
index 0e83dd305d0f..99026978e187 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-integration/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-integration/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-integration
jar
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/jetty-ee9-jmx-webapp-it/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/jetty-ee9-jmx-webapp-it/pom.xml
index 7b1be9091aca..3100f8854774 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/jetty-ee9-jmx-webapp-it/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/jetty-ee9-jmx-webapp-it/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-jmx
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-jmx-webapp-it
jar
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/jetty-ee9-jmx-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/jetty-ee9-jmx-webapp/pom.xml
index 04d9688074dd..089f9932fe7a 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/jetty-ee9-jmx-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/jetty-ee9-jmx-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-jmx
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-jmx-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/pom.xml
index f7ef38908021..be1919c136c0 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jmx/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-jmx
pom
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jndi/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jndi/pom.xml
index 084861fd9108..4c21187fc3ab 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jndi/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-jndi/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-jndi
jar
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-loginservice/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-loginservice/pom.xml
index 009b1fc9061f..08acb21147e5 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-loginservice/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-loginservice/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-loginservice
EE9 :: Tests :: Login Service
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-openid-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-openid-webapp/pom.xml
index fe9dfbfbd722..b0e1eaffac62 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-openid-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-openid-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-openid-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-owb-cdi-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-owb-cdi-webapp/pom.xml
index a73fa97aada2..7983a0d83f74 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-owb-cdi-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-owb-cdi-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-owb-cdi-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-quickstart/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-quickstart/pom.xml
index f50f372278a7..b1a38ebfcdb9 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-quickstart/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-quickstart/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-quickstart
EE9 :: Tests :: Quick Start
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-common/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-common/pom.xml
index ee87d95b19b8..e361467823e3 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-common/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-common/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-sessions-common
EE9 :: Tests :: Sessions :: Common
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-file/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-file/pom.xml
index d613d03184c2..cf4c04916130 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-file/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-file/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-sessions-file
EE9 :: Tests :: Sessions :: File
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-gcloud/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-gcloud/pom.xml
index 855fdd44b917..ee08df4f507e 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-gcloud/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-gcloud/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-sessions-gcloud
EE9 :: Tests :: Sessions :: GCloud
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-hazelcast/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-hazelcast/pom.xml
index 466eb1377988..72e325e96aac 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-hazelcast/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-hazelcast/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-sessions-hazelcast
EE9 :: Tests :: Sessions :: Hazelcast
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-infinispan/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-infinispan/pom.xml
index b151ed828678..d1a777ada7ad 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-infinispan/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-infinispan/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-ee9-test-sessions-infinispan
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-jdbc/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-jdbc/pom.xml
index e438b9813c47..778a80cef955 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-jdbc/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-jdbc/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-sessions-jdbc
EE9 :: Tests :: Sessions :: JDBC
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-memcached/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-memcached/pom.xml
index cb2d31f20d8d..227a5ab05d4f 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-memcached/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-memcached/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-sessions-memcached
EE9 :: Tests :: Sessions :: Memcached
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-mongodb/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-mongodb/pom.xml
index 27b81a74a2d0..986d1298d281 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-mongodb/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/jetty-ee9-test-sessions-mongodb/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-test-sessions
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-sessions-mongodb
EE9 :: Tests :: Sessions :: Mongo
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/pom.xml
index 9c4fad2faa31..303a34f3c1f9 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-sessions
pom
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-simple-session-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-simple-session-webapp/pom.xml
index 029081055794..581dac567906 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-simple-session-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-simple-session-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-simple-session-webapp
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-webapp-rfc2616/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-webapp-rfc2616/pom.xml
index 2b9db52c01ee..54a2d294b348 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-webapp-rfc2616/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-webapp-rfc2616/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-webapp-rfc2616
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-client-provided-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-client-provided-webapp/pom.xml
index 132f9186e089..8ff74eb7d329 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-client-provided-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-client-provided-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-websocket-client-provided-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-client-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-client-webapp/pom.xml
index c1f7db706a74..735a3b674232 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-client-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-client-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-websocket-client-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-webapp/pom.xml
index 1527bf089574..7fc3dbd785b5 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-websocket-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-websocket-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-weld-cdi-webapp/pom.xml b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-weld-cdi-webapp/pom.xml
index aa7d301084dd..0dedfa8fc643 100644
--- a/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-weld-cdi-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/jetty-ee9-test-weld-cdi-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9-tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-test-weld-cdi-webapp
war
diff --git a/jetty-ee9/jetty-ee9-tests/pom.xml b/jetty-ee9/jetty-ee9-tests/pom.xml
index f8faab169ac0..c2f3e9a28593 100644
--- a/jetty-ee9/jetty-ee9-tests/pom.xml
+++ b/jetty-ee9/jetty-ee9-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-tests
pom
diff --git a/jetty-ee9/jetty-ee9-webapp/pom.xml b/jetty-ee9/jetty-ee9-webapp/pom.xml
index 355504c06744..6045bc5e0afe 100644
--- a/jetty-ee9/jetty-ee9-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-webapp
EE9 :: WebApp
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-client-webapp/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-client-webapp/pom.xml
index 75c98ddea250..d56e8d90e5d5 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-client-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-client-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-ee9-websocket-jakarta-client-webapp
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-client/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-client/pom.xml
index 10f5a4eff368..1ff0f9894832 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-client/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-ee9-websocket-jakarta-client
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-common/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-common/pom.xml
index 3f57fabcef5e..37a384dfa23c 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-common/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-jakarta-common
EE9 :: Websocket :: Jakarta Common
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-server/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-server/pom.xml
index ab962a14df82..1b0abb9e83e8 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-server/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-jakarta-server
EE9 :: Websocket :: Jakarta Server
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-tests/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-tests/pom.xml
index 66f9a3bfd868..fd6636551d09 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-tests/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jakarta-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-jakarta-tests
EE9 :: Websocket :: Jakarta Tests
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-api/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-api/pom.xml
index ca1148c20545..224c935ca073 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-api/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-api/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-jetty-api
EE9 :: Websocket :: Jetty API
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-client-webapp/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-client-webapp/pom.xml
index 08efa42e94ce..e925539f964e 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-client-webapp/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-client-webapp/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-jetty-client-webapp
EE9 :: Websocket :: Jetty Client WebApp
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-client/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-client/pom.xml
index 7df27d273af3..c17c97bbe73a 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-client/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-client/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-jetty-client
EE9 :: Websocket :: Jetty Client
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-common/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-common/pom.xml
index 2feb3c86eb6c..282d66daa973 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-common/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-jetty-common
EE9 :: Websocket :: Jetty Common
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-server/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-server/pom.xml
index a5e5dc9d6f56..a2f86c742e04 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-server/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-server/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-jetty-server
EE9 :: Websocket :: Jetty Server
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-tests/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-tests/pom.xml
index e1d19a75b032..d4d189b9340d 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-tests/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-jetty-tests/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-jetty-tests
EE9 :: Websocket :: Jetty Tests
diff --git a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-servlet/pom.xml b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-servlet/pom.xml
index 9bc065094793..11c268df6478 100644
--- a/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-servlet/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/jetty-ee9-websocket-servlet/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9.websocket
jetty-ee9-websocket
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-ee9-websocket-servlet
EE9 :: Websocket :: Servlet
diff --git a/jetty-ee9/jetty-ee9-websocket/pom.xml b/jetty-ee9/jetty-ee9-websocket/pom.xml
index 60a66759caa4..11a05da4f054 100644
--- a/jetty-ee9/jetty-ee9-websocket/pom.xml
+++ b/jetty-ee9/jetty-ee9-websocket/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.ee9
jetty-ee9
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
org.eclipse.jetty.ee9.websocket
diff --git a/jetty-ee9/pom.xml b/jetty-ee9/pom.xml
index 557d8a7fb945..f1d411fedaba 100644
--- a/jetty-ee9/pom.xml
+++ b/jetty-ee9/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.ee9
jetty-ee9
diff --git a/jetty-home/pom.xml b/jetty-home/pom.xml
index cd1a56d1a9fd..2952a1dab64b 100644
--- a/jetty-home/pom.xml
+++ b/jetty-home/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
../pom.xml
jetty-home
diff --git a/jetty-integrations/jetty-gcloud/jetty-gcloud-session-manager/pom.xml b/jetty-integrations/jetty-gcloud/jetty-gcloud-session-manager/pom.xml
index 92f7a421e276..a274aad7b098 100644
--- a/jetty-integrations/jetty-gcloud/jetty-gcloud-session-manager/pom.xml
+++ b/jetty-integrations/jetty-gcloud/jetty-gcloud-session-manager/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.gcloud
jetty-gcloud
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-gcloud-session-manager
Integrations :: GCloud :: Sessions
diff --git a/jetty-integrations/jetty-gcloud/pom.xml b/jetty-integrations/jetty-gcloud/pom.xml
index 5305f8ed0994..39909b2fda69 100644
--- a/jetty-integrations/jetty-gcloud/pom.xml
+++ b/jetty-integrations/jetty-gcloud/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-integrations
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.gcloud
jetty-gcloud
diff --git a/jetty-integrations/jetty-hazelcast/pom.xml b/jetty-integrations/jetty-hazelcast/pom.xml
index 3bea1a621559..034ec2204867 100644
--- a/jetty-integrations/jetty-hazelcast/pom.xml
+++ b/jetty-integrations/jetty-hazelcast/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-integrations
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-hazelcast
Integrations :: Hazelcast :: Sessions
diff --git a/jetty-integrations/jetty-infinispan/jetty-infinispan-common/pom.xml b/jetty-integrations/jetty-infinispan/jetty-infinispan-common/pom.xml
index 4808937c4110..0e89174ff9a6 100644
--- a/jetty-integrations/jetty-infinispan/jetty-infinispan-common/pom.xml
+++ b/jetty-integrations/jetty-infinispan/jetty-infinispan-common/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-infinispan
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-infinispan-common
Integrations :: Infinispan :: Sessions
diff --git a/jetty-integrations/jetty-infinispan/jetty-infinispan-embedded-query/pom.xml b/jetty-integrations/jetty-infinispan/jetty-infinispan-embedded-query/pom.xml
index f52c4a9a78ec..33a7d711e3df 100644
--- a/jetty-integrations/jetty-infinispan/jetty-infinispan-embedded-query/pom.xml
+++ b/jetty-integrations/jetty-infinispan/jetty-infinispan-embedded-query/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-infinispan
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-infinispan-embedded-query
Integrations :: Infinispan :: Embedded with Querying
diff --git a/jetty-integrations/jetty-infinispan/jetty-infinispan-embedded/pom.xml b/jetty-integrations/jetty-infinispan/jetty-infinispan-embedded/pom.xml
index 98f5856cd71b..7ee1e345db65 100644
--- a/jetty-integrations/jetty-infinispan/jetty-infinispan-embedded/pom.xml
+++ b/jetty-integrations/jetty-infinispan/jetty-infinispan-embedded/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-infinispan
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-infinispan-embedded
pom
diff --git a/jetty-integrations/jetty-infinispan/jetty-infinispan-remote-query/pom.xml b/jetty-integrations/jetty-infinispan/jetty-infinispan-remote-query/pom.xml
index 6ffd70e4a5e1..ef94e268c638 100644
--- a/jetty-integrations/jetty-infinispan/jetty-infinispan-remote-query/pom.xml
+++ b/jetty-integrations/jetty-infinispan/jetty-infinispan-remote-query/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-infinispan
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-infinispan-remote-query
Integrations :: Infinispan :: Remote with Querying
diff --git a/jetty-integrations/jetty-infinispan/jetty-infinispan-remote/pom.xml b/jetty-integrations/jetty-infinispan/jetty-infinispan-remote/pom.xml
index f86ea704cd5d..356197e3b048 100644
--- a/jetty-integrations/jetty-infinispan/jetty-infinispan-remote/pom.xml
+++ b/jetty-integrations/jetty-infinispan/jetty-infinispan-remote/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-infinispan
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-infinispan-remote
pom
diff --git a/jetty-integrations/jetty-infinispan/pom.xml b/jetty-integrations/jetty-infinispan/pom.xml
index 94020740b9a9..291afedb91d4 100644
--- a/jetty-integrations/jetty-infinispan/pom.xml
+++ b/jetty-integrations/jetty-infinispan/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-integrations
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-infinispan
pom
diff --git a/jetty-integrations/jetty-memcached/jetty-memcached-sessions/pom.xml b/jetty-integrations/jetty-memcached/jetty-memcached-sessions/pom.xml
index 7d6dc8d3c1f4..d3e087fc48e6 100644
--- a/jetty-integrations/jetty-memcached/jetty-memcached-sessions/pom.xml
+++ b/jetty-integrations/jetty-memcached/jetty-memcached-sessions/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.memcached
jetty-memcached
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-memcached-sessions
Integrations :: Memcached :: Sessions
diff --git a/jetty-integrations/jetty-memcached/pom.xml b/jetty-integrations/jetty-memcached/pom.xml
index 834448d10473..2541fe0ef5a9 100644
--- a/jetty-integrations/jetty-memcached/pom.xml
+++ b/jetty-integrations/jetty-memcached/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-integrations
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.memcached
jetty-memcached
diff --git a/jetty-integrations/jetty-nosql/pom.xml b/jetty-integrations/jetty-nosql/pom.xml
index a09cc643ceaa..727dfa2a0f14 100644
--- a/jetty-integrations/jetty-nosql/pom.xml
+++ b/jetty-integrations/jetty-nosql/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-integrations
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-nosql
Integrations :: NoSQL :: Sessions
diff --git a/jetty-integrations/pom.xml b/jetty-integrations/pom.xml
index 84479b75d72e..13b860605ae7 100644
--- a/jetty-integrations/pom.xml
+++ b/jetty-integrations/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-integrations
pom
diff --git a/jetty-p2/pom.xml b/jetty-p2/pom.xml
index 18ef1728136f..98996ee8f119 100644
--- a/jetty-p2/pom.xml
+++ b/jetty-p2/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-p2
pom
diff --git a/pom.xml b/pom.xml
index 55dd5730c6e9..45ab820e7766 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
pom
Jetty :: Project
The Eclipse Jetty Project
diff --git a/tests/jetty-jmh/pom.xml b/tests/jetty-jmh/pom.xml
index 92f1c06393f2..23bf936c37c7 100644
--- a/tests/jetty-jmh/pom.xml
+++ b/tests/jetty-jmh/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.tests
tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-jmh
Tests :: JMH
diff --git a/tests/jetty-test-multipart/pom.xml b/tests/jetty-test-multipart/pom.xml
index 9b09794186dd..ecc2a6c2e3dd 100644
--- a/tests/jetty-test-multipart/pom.xml
+++ b/tests/jetty-test-multipart/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.tests
tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-test-multipart
jar
diff --git a/tests/jetty-test-session-common/pom.xml b/tests/jetty-test-session-common/pom.xml
index 11c0d8675ad4..23fbfeb8478d 100644
--- a/tests/jetty-test-session-common/pom.xml
+++ b/tests/jetty-test-session-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.tests
tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-test-session-common
jar
diff --git a/tests/jetty-testers/pom.xml b/tests/jetty-testers/pom.xml
index 551ad6e09b62..d82a4efc707f 100644
--- a/tests/jetty-testers/pom.xml
+++ b/tests/jetty-testers/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.tests
tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
jetty-testers
jar
diff --git a/tests/pom.xml b/tests/pom.xml
index 56d0533625e6..06822f7540fa 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-project
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.tests
tests
diff --git a/tests/test-cross-context-dispatch/ccd-common/pom.xml b/tests/test-cross-context-dispatch/ccd-common/pom.xml
index 617ab156ab53..2c0baedd2b14 100644
--- a/tests/test-cross-context-dispatch/ccd-common/pom.xml
+++ b/tests/test-cross-context-dispatch/ccd-common/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests.ccd
test-cross-context-dispatch
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
ccd-common
jar
diff --git a/tests/test-cross-context-dispatch/ccd-ee10-webapp/pom.xml b/tests/test-cross-context-dispatch/ccd-ee10-webapp/pom.xml
index 63221cff78f0..66e12c924548 100644
--- a/tests/test-cross-context-dispatch/ccd-ee10-webapp/pom.xml
+++ b/tests/test-cross-context-dispatch/ccd-ee10-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests.ccd
test-cross-context-dispatch
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
ccd-ee10-webapp
war
diff --git a/tests/test-cross-context-dispatch/ccd-ee8-webapp/pom.xml b/tests/test-cross-context-dispatch/ccd-ee8-webapp/pom.xml
index e080c81dd354..007c21e8dcaf 100644
--- a/tests/test-cross-context-dispatch/ccd-ee8-webapp/pom.xml
+++ b/tests/test-cross-context-dispatch/ccd-ee8-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests.ccd
test-cross-context-dispatch
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
ccd-ee8-webapp
war
diff --git a/tests/test-cross-context-dispatch/ccd-ee9-webapp/pom.xml b/tests/test-cross-context-dispatch/ccd-ee9-webapp/pom.xml
index a08db053e893..22782c7cd406 100644
--- a/tests/test-cross-context-dispatch/ccd-ee9-webapp/pom.xml
+++ b/tests/test-cross-context-dispatch/ccd-ee9-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests.ccd
test-cross-context-dispatch
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
ccd-ee9-webapp
war
diff --git a/tests/test-cross-context-dispatch/ccd-tests/pom.xml b/tests/test-cross-context-dispatch/ccd-tests/pom.xml
index 1ac7fee93ca3..a557aa571e98 100644
--- a/tests/test-cross-context-dispatch/ccd-tests/pom.xml
+++ b/tests/test-cross-context-dispatch/ccd-tests/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests.ccd
test-cross-context-dispatch
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
ccd-tests
jar
diff --git a/tests/test-cross-context-dispatch/pom.xml b/tests/test-cross-context-dispatch/pom.xml
index 5469e4a8a579..9e905d8b4ac1 100644
--- a/tests/test-cross-context-dispatch/pom.xml
+++ b/tests/test-cross-context-dispatch/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.tests
tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
org.eclipse.jetty.tests.ccd
test-cross-context-dispatch
diff --git a/tests/test-distribution/pom.xml b/tests/test-distribution/pom.xml
index 3a427005e856..245bcb687404 100644
--- a/tests/test-distribution/pom.xml
+++ b/tests/test-distribution/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.tests
tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-distribution
pom
diff --git a/tests/test-distribution/test-distribution-common/pom.xml b/tests/test-distribution/test-distribution-common/pom.xml
index 81daf52dde16..b83a3ba27752 100644
--- a/tests/test-distribution/test-distribution-common/pom.xml
+++ b/tests/test-distribution/test-distribution-common/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.tests
test-distribution
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-distribution-common
jar
diff --git a/tests/test-distribution/test-ee10-distribution/pom.xml b/tests/test-distribution/test-ee10-distribution/pom.xml
index 138c2bacc500..102827f96d94 100644
--- a/tests/test-distribution/test-ee10-distribution/pom.xml
+++ b/tests/test-distribution/test-ee10-distribution/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.tests
test-distribution
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-ee10-distribution
jar
diff --git a/tests/test-distribution/test-ee9-distribution/pom.xml b/tests/test-distribution/test-ee9-distribution/pom.xml
index 4ce5418dd644..c49ace269417 100644
--- a/tests/test-distribution/test-ee9-distribution/pom.xml
+++ b/tests/test-distribution/test-ee9-distribution/pom.xml
@@ -5,7 +5,7 @@
org.eclipse.jetty.tests
test-distribution
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-ee9-distribution
jar
diff --git a/tests/test-integration/pom.xml b/tests/test-integration/pom.xml
index f0094c5a8d95..4943f85df11d 100644
--- a/tests/test-integration/pom.xml
+++ b/tests/test-integration/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-integration
jar
diff --git a/tests/test-jpms/pom.xml b/tests/test-jpms/pom.xml
index a745bdefcd54..5c2f21abb594 100644
--- a/tests/test-jpms/pom.xml
+++ b/tests/test-jpms/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
tests
- 12.0.13-SNAPSHOT
+ 12.0.14-SNAPSHOT
test-jpms
Tests :: JPMS