diff --git a/VERSION.txt b/VERSION.txt
index 34c96a1c0088..feec10348d01 100644
--- a/VERSION.txt
+++ b/VERSION.txt
@@ -1,5 +1,52 @@
-jetty-11.0.16-SNAPSHOT
- + Jan is now using IntelliJ!
+jetty-11.0.16 - 25 August 2023
+ + 6140 Report total number of keys in SelectorManager
+ + 7091 Add SOCKS5 support
+ + 8405 Servlet 3.1 ReadListener.onAllDataRead() is called twice under h2 or
+ h2c if the server doesn't respond within 30s
+ + 8556 ServletContext.getSessionTimeout() incorrectly throws
+ IllegalStateException
+ + 8694 Make QuicServerConnector respect configured key store instances
+ + 8926 HttpClient GZIPContentDecoder should remove Content-Length and
+ Content-Encoding: gzip
+ + 9150 jetty-http-spi: Jetty's implementation of HttpExchange.setStreams
+ method faulty
+ + 9386 SSL reports deprecated setting, but ssl.ini still uses it
+ + 9397 HTTP/3 encryption configuration
+ + 9476 onCompleteFailure called multiple times
+ + 9524 InputStreamResponseListener's InputStream creates an exception on
+ close()
+ + 9554 Move (qpack/hpack) HuffmanDecoder / HuffmanEncoder / NBitInteger* to
+ common location
+ + 9682 RetainableByteBuffer buffer release bug in WebSocket
+ + 9685 Jetty doesn't set the date header on error responses
+ + 9720 Http2Session.streamIdleTimeout should permit being disabled from
+ AbstractHTTP2ServerConnectionFactory
+ + 9772 Improve Quiche certificates deployment
+ + 9777 CrossOriginFilter does not return Vary header on no-cors mode
+ + 9795 http3-server is leaking the Jetty logging service to web applications
+ + 9887 Deprecate CGI Servlet
+ + 9895 A MessageTooLargeException doesn't close a WebSocket connection
+ + 9947 Cannot invoke "org.eclipse.jetty.io.ManagedSelector.getTotalKeys()"
+ because "selector" is null
+ + 9990 Server rejects certain sizes of streamed request bodies
+ + 10066 Allow `SAXParserFactory` or `SAXParser` to be configured in Jetty's
+ `XmlParser` class
+ + 10086 Revisiting ProxyConfiguration.getProxies()
+ + 10105 Document that Request objects are not reusable
+ + 10120 OutOfMemoryError caused by CyclicTimeouts
+ + 10135 Websocket: Using PerMessageDeflateExtension and flush in batchMode
+ send FLUSH_FRAME to client.
+ + 10143 Startup fails due to IllegalArgumentException: Comparison method
+ violates its general contract
+ + 10145 WritePendingException over HTTP/2 tunnel
+ + 10160 Verify PROXY_AUTHENTICATION is sent to forward proxies
+ + 10211 NPE in ArrayByteBufferPool.findOldestEntry()
+ + 10312 Remove jetty-home-with-docs to eliminate build time cyclic
+ dependencies
+ + 10350 Support Java 21 virtual threads
+ + 10352 various cleanups in `HttpParser`
+ + 10388 Jetty10 inetaccess mod started error
+ + 10397 Iso88591StringBuilder.append seems to have a logic error
jetty-11.0.15 - 11 April 2023
+ 6184 Remove usages of classes associated with JEP-411 that deprecate/remove
@@ -1086,7 +1133,7 @@ jetty-11.0.0.beta1 - 10 July 2020
SETTINGS Frame.
+ 4903 Give better errors for non public Websocket Endpoints
+ 4904 WebsocketClient creates more connections than needed
- + 4907
+ + 4907
org.eclipse.jetty.websocket.tests.SuspendResumeTest#testSuspendAfterClose
+ 4920 Restore ability to delete sessions on stop
+ 4921 Quickstart run improperly runs dynamically added context initializers
diff --git a/apache-jsp/pom.xml b/apache-jsp/pom.xml
index e4feefd601ed..cd04f85c06cd 100644
--- a/apache-jsp/pom.xml
+++ b/apache-jsp/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/build-resources/pom.xml b/build-resources/pom.xml
index e776f726ac25..2bec430994ac 100644
--- a/build-resources/pom.xml
+++ b/build-resources/pom.xml
@@ -7,7 +7,7 @@
-->
org.eclipse.jetty
build-resources
- 11.0.16-SNAPSHOT
+ 11.0.16
Jetty :: Build Resources
jar
diff --git a/demos/demo-async-rest/demo-async-rest-jar/pom.xml b/demos/demo-async-rest/demo-async-rest-jar/pom.xml
index 6cbb7bb9aaa5..29935af99170 100644
--- a/demos/demo-async-rest/demo-async-rest-jar/pom.xml
+++ b/demos/demo-async-rest/demo-async-rest-jar/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.demos
demo-async-rest-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/demos/demo-async-rest/demo-async-rest-server/pom.xml b/demos/demo-async-rest/demo-async-rest-server/pom.xml
index ce33092dbb91..cae37829f25d 100644
--- a/demos/demo-async-rest/demo-async-rest-server/pom.xml
+++ b/demos/demo-async-rest/demo-async-rest-server/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.demos
demo-async-rest-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/demos/demo-async-rest/demo-async-rest-webapp/pom.xml b/demos/demo-async-rest/demo-async-rest-webapp/pom.xml
index 4e313427585d..ca25780bcbb0 100644
--- a/demos/demo-async-rest/demo-async-rest-webapp/pom.xml
+++ b/demos/demo-async-rest/demo-async-rest-webapp/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.demos
demo-async-rest-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/demos/demo-async-rest/pom.xml b/demos/demo-async-rest/pom.xml
index a976102e8124..a2682b3eab8e 100644
--- a/demos/demo-async-rest/pom.xml
+++ b/demos/demo-async-rest/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/demos/demo-jaas-webapp/pom.xml b/demos/demo-jaas-webapp/pom.xml
index 5561a09e3bd9..cb16b6a49b4c 100644
--- a/demos/demo-jaas-webapp/pom.xml
+++ b/demos/demo-jaas-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
demo-jaas-webapp
Demo :: JAAS :: WebApp
diff --git a/demos/demo-jetty-webapp/pom.xml b/demos/demo-jetty-webapp/pom.xml
index 630eab500f8a..da9e2b350743 100644
--- a/demos/demo-jetty-webapp/pom.xml
+++ b/demos/demo-jetty-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
../pom.xml
4.0.0
diff --git a/demos/demo-jndi-webapp/pom.xml b/demos/demo-jndi-webapp/pom.xml
index 09595f5b53da..68afa26e1a72 100644
--- a/demos/demo-jndi-webapp/pom.xml
+++ b/demos/demo-jndi-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
demo-jndi-webapp
Demo :: JNDI :: WebApp
diff --git a/demos/demo-jsp-webapp/pom.xml b/demos/demo-jsp-webapp/pom.xml
index 130e646004c2..5108189928e2 100644
--- a/demos/demo-jsp-webapp/pom.xml
+++ b/demos/demo-jsp-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/demos/demo-mock-resources/pom.xml b/demos/demo-mock-resources/pom.xml
index 485eb98834d7..93414a84446c 100644
--- a/demos/demo-mock-resources/pom.xml
+++ b/demos/demo-mock-resources/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
Demo :: Mock Resources
demo-mock-resources
diff --git a/demos/demo-proxy-webapp/pom.xml b/demos/demo-proxy-webapp/pom.xml
index ac47499140b4..8b0aedcaf390 100644
--- a/demos/demo-proxy-webapp/pom.xml
+++ b/demos/demo-proxy-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
demo-proxy-webapp
diff --git a/demos/demo-simple-webapp/pom.xml b/demos/demo-simple-webapp/pom.xml
index 19f6b4360e21..de5a8a34c6da 100644
--- a/demos/demo-simple-webapp/pom.xml
+++ b/demos/demo-simple-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/demos/demo-spec/demo-container-initializer/pom.xml b/demos/demo-spec/demo-container-initializer/pom.xml
index 8ae520ccef4e..1a6f9bafb6d2 100644
--- a/demos/demo-spec/demo-container-initializer/pom.xml
+++ b/demos/demo-spec/demo-container-initializer/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
../../pom.xml
demo-container-initializer
diff --git a/demos/demo-spec/demo-spec-webapp/pom.xml b/demos/demo-spec/demo-spec-webapp/pom.xml
index ce7b341f2238..3e008ab5a9f4 100644
--- a/demos/demo-spec/demo-spec-webapp/pom.xml
+++ b/demos/demo-spec/demo-spec-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
../../pom.xml
Demo :: Servlet Spec :: Webapp
diff --git a/demos/demo-spec/demo-web-fragment/pom.xml b/demos/demo-spec/demo-web-fragment/pom.xml
index 4751206f5405..62efe36e346f 100644
--- a/demos/demo-spec/demo-web-fragment/pom.xml
+++ b/demos/demo-spec/demo-web-fragment/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
../../pom.xml
diff --git a/demos/demo-spec/pom.xml b/demos/demo-spec/pom.xml
index d525ca7f4fdd..8bc4bc6a82aa 100644
--- a/demos/demo-spec/pom.xml
+++ b/demos/demo-spec/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
Demo :: Servlet Spec
demo-spec
diff --git a/demos/embedded/pom.xml b/demos/embedded/pom.xml
index cdb0198479e3..6a4ac1945719 100644
--- a/demos/embedded/pom.xml
+++ b/demos/embedded/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.demos
demos-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
demos-jetty-embedded
diff --git a/demos/pom.xml b/demos/pom.xml
index 51ca796837ce..3938e8ab340c 100644
--- a/demos/pom.xml
+++ b/demos/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/documentation/jetty-asciidoctor-extensions/pom.xml b/documentation/jetty-asciidoctor-extensions/pom.xml
index 3beb77c15dc4..abebd0020d0a 100644
--- a/documentation/jetty-asciidoctor-extensions/pom.xml
+++ b/documentation/jetty-asciidoctor-extensions/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.documentation
documentation-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/documentation/jetty-documentation/pom.xml b/documentation/jetty-documentation/pom.xml
index a115d98ecb87..d0509e60cc57 100644
--- a/documentation/jetty-documentation/pom.xml
+++ b/documentation/jetty-documentation/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.documentation
documentation-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/documentation/pom.xml b/documentation/pom.xml
index 9eaabb0d99fc..aa2c68a67162 100644
--- a/documentation/pom.xml
+++ b/documentation/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/glassfish-jstl/pom.xml b/glassfish-jstl/pom.xml
index 4e7d6182fd88..9ffaea10eb06 100644
--- a/glassfish-jstl/pom.xml
+++ b/glassfish-jstl/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
glassfish-jstl
diff --git a/javadoc/pom.xml b/javadoc/pom.xml
index 92b5608d65fe..85d4c1e03f87 100644
--- a/javadoc/pom.xml
+++ b/javadoc/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-alpn/jetty-alpn-client/pom.xml b/jetty-alpn/jetty-alpn-client/pom.xml
index 044236e4623e..efaf0b8b8f80 100644
--- a/jetty-alpn/jetty-alpn-client/pom.xml
+++ b/jetty-alpn/jetty-alpn-client/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-alpn-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-alpn-client
diff --git a/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml b/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml
index f7c2625fc1ca..f01e9f41035b 100644
--- a/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml
+++ b/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-alpn-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml b/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml
index 6343c4efcf6c..8dbb1fb80df6 100644
--- a/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml
+++ b/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-alpn-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-alpn/jetty-alpn-java-client/pom.xml b/jetty-alpn/jetty-alpn-java-client/pom.xml
index 880f16b9d883..efae2dd4e7f7 100644
--- a/jetty-alpn/jetty-alpn-java-client/pom.xml
+++ b/jetty-alpn/jetty-alpn-java-client/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-alpn-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-alpn/jetty-alpn-java-server/pom.xml b/jetty-alpn/jetty-alpn-java-server/pom.xml
index 5c2a5461c765..c01458aa4107 100644
--- a/jetty-alpn/jetty-alpn-java-server/pom.xml
+++ b/jetty-alpn/jetty-alpn-java-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-alpn-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-alpn/jetty-alpn-server/pom.xml b/jetty-alpn/jetty-alpn-server/pom.xml
index 851a4271ba9c..521fc1a1d5ad 100644
--- a/jetty-alpn/jetty-alpn-server/pom.xml
+++ b/jetty-alpn/jetty-alpn-server/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-alpn-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-alpn-server
diff --git a/jetty-alpn/pom.xml b/jetty-alpn/pom.xml
index e4d52125bc72..484c89191056 100644
--- a/jetty-alpn/pom.xml
+++ b/jetty-alpn/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-alpn-parent
diff --git a/jetty-annotations/pom.xml b/jetty-annotations/pom.xml
index e9470a5518d9..528692f500e7 100644
--- a/jetty-annotations/pom.xml
+++ b/jetty-annotations/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-ant/pom.xml b/jetty-ant/pom.xml
index 5a0cd25065cc..681d8446dd53 100644
--- a/jetty-ant/pom.xml
+++ b/jetty-ant/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-ant
diff --git a/jetty-bom/pom.xml b/jetty-bom/pom.xml
index 073d12c32492..f901479cc871 100644
--- a/jetty-bom/pom.xml
+++ b/jetty-bom/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
jetty-bom
@@ -53,409 +53,409 @@
org.eclipse.jetty
apache-jsp
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
glassfish-jstl
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-alpn-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-alpn-java-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-alpn-java-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-alpn-conscrypt-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-alpn-conscrypt-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-alpn-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-annotations
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-ant
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-cdi
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-deploy
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.fcgi
fcgi-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.fcgi
fcgi-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.gcloud
jetty-gcloud-session-manager
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-home
- 11.0.16-SNAPSHOT
+ 11.0.16
zip
org.eclipse.jetty
jetty-home
- 11.0.16-SNAPSHOT
+ 11.0.16
tar.gz
org.eclipse.jetty
jetty-http
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http2
http2-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http2
http2-common
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http2
http2-hpack
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http2
http2-http-client-transport
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http2
http2-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http3
http3-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http3
http3-common
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http3
http3-http-client-transport
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http3
http3-qpack
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.http3
http3-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-http-spi
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
infinispan-common
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
infinispan-remote-query
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
infinispan-embedded-query
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-hazelcast
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-io
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-jaas
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-jaspi
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-jmx
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-jndi
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-keystore
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.memcached
jetty-memcached-sessions
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-nosql
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.osgi
jetty-osgi-alpn
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.osgi
jetty-osgi-boot
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.osgi
jetty-osgi-boot-jsp
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.osgi
jetty-osgi-boot-warurl
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.quic
quic-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.quic
quic-common
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.quic
quic-quiche-common
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.quic
quic-quiche-jna
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.quic
quic-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.osgi
jetty-httpservice
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-plus
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-proxy
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-quickstart
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-rewrite
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-security
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-openid
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-servlet
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-servlets
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-slf4j-impl
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-unixdomain-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-unixsocket-common
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-unixsocket-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-unixsocket-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-util
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-util-ajax
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-webapp
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-jakarta-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-jakarta-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-jakarta-common
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-jetty-api
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-jetty-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-jetty-common
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-jetty-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-servlet
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-core-common
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-core-client
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty.websocket
websocket-core-server
- 11.0.16-SNAPSHOT
+ 11.0.16
org.eclipse.jetty
jetty-xml
- 11.0.16-SNAPSHOT
+ 11.0.16
@@ -471,7 +471,7 @@
org.eclipse.jetty.quic
quic-quiche-foreign-incubator
- 11.0.16-SNAPSHOT
+ 11.0.16
diff --git a/jetty-cdi/pom.xml b/jetty-cdi/pom.xml
index d2b7dccc68eb..4253f3c550f1 100644
--- a/jetty-cdi/pom.xml
+++ b/jetty-cdi/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
org.eclipse.jetty
diff --git a/jetty-client/pom.xml b/jetty-client/pom.xml
index b98a94b6790a..9aa61feaa575 100644
--- a/jetty-client/pom.xml
+++ b/jetty-client/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-deploy/pom.xml b/jetty-deploy/pom.xml
index ee19b93c5e94..729282bdaa00 100644
--- a/jetty-deploy/pom.xml
+++ b/jetty-deploy/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-fcgi/fcgi-client/pom.xml b/jetty-fcgi/fcgi-client/pom.xml
index 5f587dceadbf..4a3dcde19219 100644
--- a/jetty-fcgi/fcgi-client/pom.xml
+++ b/jetty-fcgi/fcgi-client/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.fcgi
fcgi-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-fcgi/fcgi-server/pom.xml b/jetty-fcgi/fcgi-server/pom.xml
index 8c1dbd1926fe..bfcddbd5983c 100644
--- a/jetty-fcgi/fcgi-server/pom.xml
+++ b/jetty-fcgi/fcgi-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.fcgi
fcgi-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-fcgi/pom.xml b/jetty-fcgi/pom.xml
index 6204f2149750..d1c7a088fb88 100644
--- a/jetty-fcgi/pom.xml
+++ b/jetty-fcgi/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-gcloud/jetty-gcloud-session-manager/pom.xml b/jetty-gcloud/jetty-gcloud-session-manager/pom.xml
index f6d8aa515d2c..811a55c87200 100644
--- a/jetty-gcloud/jetty-gcloud-session-manager/pom.xml
+++ b/jetty-gcloud/jetty-gcloud-session-manager/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.gcloud
gcloud-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-gcloud/pom.xml b/jetty-gcloud/pom.xml
index 2d3dfe16a520..1f5cb4e50f15 100644
--- a/jetty-gcloud/pom.xml
+++ b/jetty-gcloud/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-hazelcast/pom.xml b/jetty-hazelcast/pom.xml
index 4415d5c0dffa..43ac7ea2429d 100644
--- a/jetty-hazelcast/pom.xml
+++ b/jetty-hazelcast/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-home/pom.xml b/jetty-home/pom.xml
index 84b1e4366790..f3a33d81f5f7 100644
--- a/jetty-home/pom.xml
+++ b/jetty-home/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-home
diff --git a/jetty-http-spi/pom.xml b/jetty-http-spi/pom.xml
index 5b1939eabefa..06152dfabdda 100644
--- a/jetty-http-spi/pom.xml
+++ b/jetty-http-spi/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-http-spi
diff --git a/jetty-http/pom.xml b/jetty-http/pom.xml
index 741664790576..acbde138322f 100644
--- a/jetty-http/pom.xml
+++ b/jetty-http/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http2/http2-client/pom.xml b/jetty-http2/http2-client/pom.xml
index 25fc6fde0272..497fe4c21380 100644
--- a/jetty-http2/http2-client/pom.xml
+++ b/jetty-http2/http2-client/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http2
http2-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http2/http2-common/pom.xml b/jetty-http2/http2-common/pom.xml
index 6954420ad197..22d7dea9edcc 100644
--- a/jetty-http2/http2-common/pom.xml
+++ b/jetty-http2/http2-common/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http2
http2-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http2/http2-hpack/pom.xml b/jetty-http2/http2-hpack/pom.xml
index 3e4ac2cf95b1..5a46201da259 100644
--- a/jetty-http2/http2-hpack/pom.xml
+++ b/jetty-http2/http2-hpack/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http2
http2-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http2/http2-http-client-transport/pom.xml b/jetty-http2/http2-http-client-transport/pom.xml
index c33bfcf33af9..554e8c63c55e 100644
--- a/jetty-http2/http2-http-client-transport/pom.xml
+++ b/jetty-http2/http2-http-client-transport/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http2
http2-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http2/http2-server/pom.xml b/jetty-http2/http2-server/pom.xml
index 62f9401f39f3..099fb0027fb8 100644
--- a/jetty-http2/http2-server/pom.xml
+++ b/jetty-http2/http2-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http2
http2-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http2/pom.xml b/jetty-http2/pom.xml
index 5a11976561a7..0630ad1794e5 100644
--- a/jetty-http2/pom.xml
+++ b/jetty-http2/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http3/http3-client/pom.xml b/jetty-http3/http3-client/pom.xml
index 7dfeb1d96359..c45d8cb93215 100644
--- a/jetty-http3/http3-client/pom.xml
+++ b/jetty-http3/http3-client/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http3
http3-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http3/http3-common/pom.xml b/jetty-http3/http3-common/pom.xml
index ad45c98b5157..ba995a3e3f64 100644
--- a/jetty-http3/http3-common/pom.xml
+++ b/jetty-http3/http3-common/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http3
http3-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http3/http3-http-client-transport/pom.xml b/jetty-http3/http3-http-client-transport/pom.xml
index 3ecdbc1754dd..bcfb15577e17 100644
--- a/jetty-http3/http3-http-client-transport/pom.xml
+++ b/jetty-http3/http3-http-client-transport/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http3
http3-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http3/http3-qpack/pom.xml b/jetty-http3/http3-qpack/pom.xml
index c368f4c83707..e1f7de2cb126 100644
--- a/jetty-http3/http3-qpack/pom.xml
+++ b/jetty-http3/http3-qpack/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http3
http3-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http3/http3-server/pom.xml b/jetty-http3/http3-server/pom.xml
index a9ac9a3b5d3a..453159ae34b8 100644
--- a/jetty-http3/http3-server/pom.xml
+++ b/jetty-http3/http3-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http3
http3-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http3/http3-tests/pom.xml b/jetty-http3/http3-tests/pom.xml
index d38134408366..3ae340a074bd 100644
--- a/jetty-http3/http3-tests/pom.xml
+++ b/jetty-http3/http3-tests/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.http3
http3-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-http3/pom.xml b/jetty-http3/pom.xml
index 08b5ee62d448..0e7a3a8dd51e 100644
--- a/jetty-http3/pom.xml
+++ b/jetty-http3/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-infinispan/infinispan-common/pom.xml b/jetty-infinispan/infinispan-common/pom.xml
index a6ba4cd7e2b9..3419528307ea 100644
--- a/jetty-infinispan/infinispan-common/pom.xml
+++ b/jetty-infinispan/infinispan-common/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
infinispan-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
infinispan-common
diff --git a/jetty-infinispan/infinispan-embedded-query/pom.xml b/jetty-infinispan/infinispan-embedded-query/pom.xml
index db2c367b311b..ab041c4dd960 100644
--- a/jetty-infinispan/infinispan-embedded-query/pom.xml
+++ b/jetty-infinispan/infinispan-embedded-query/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
infinispan-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
infinispan-embedded-query
diff --git a/jetty-infinispan/infinispan-embedded/pom.xml b/jetty-infinispan/infinispan-embedded/pom.xml
index 18da30049d7b..3f3c794d47ea 100644
--- a/jetty-infinispan/infinispan-embedded/pom.xml
+++ b/jetty-infinispan/infinispan-embedded/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
infinispan-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
infinispan-embedded
diff --git a/jetty-infinispan/infinispan-remote-query/pom.xml b/jetty-infinispan/infinispan-remote-query/pom.xml
index 7d693801b2ec..a8e30b2baf42 100644
--- a/jetty-infinispan/infinispan-remote-query/pom.xml
+++ b/jetty-infinispan/infinispan-remote-query/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
infinispan-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
infinispan-remote-query
diff --git a/jetty-infinispan/infinispan-remote/pom.xml b/jetty-infinispan/infinispan-remote/pom.xml
index 280781fd2575..53f3cde2bc30 100644
--- a/jetty-infinispan/infinispan-remote/pom.xml
+++ b/jetty-infinispan/infinispan-remote/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
infinispan-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
infinispan-remote
diff --git a/jetty-infinispan/pom.xml b/jetty-infinispan/pom.xml
index c22de67dc99e..d24db83a60e7 100644
--- a/jetty-infinispan/pom.xml
+++ b/jetty-infinispan/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-io/pom.xml b/jetty-io/pom.xml
index 7efe922dc20b..daa7dfee572a 100644
--- a/jetty-io/pom.xml
+++ b/jetty-io/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-io
diff --git a/jetty-jaas/pom.xml b/jetty-jaas/pom.xml
index e4ceec737d6b..d3e6d636037f 100644
--- a/jetty-jaas/pom.xml
+++ b/jetty-jaas/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-jaspi/pom.xml b/jetty-jaspi/pom.xml
index 3254bca967be..e2f375fe0b35 100644
--- a/jetty-jaspi/pom.xml
+++ b/jetty-jaspi/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-jmx/pom.xml b/jetty-jmx/pom.xml
index 7a47405bda56..ce3e73c1e03d 100644
--- a/jetty-jmx/pom.xml
+++ b/jetty-jmx/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-jmx
diff --git a/jetty-jndi/pom.xml b/jetty-jndi/pom.xml
index ef61390fb0ad..16295b1355d2 100644
--- a/jetty-jndi/pom.xml
+++ b/jetty-jndi/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-jspc-maven-plugin/pom.xml b/jetty-jspc-maven-plugin/pom.xml
index 6088bd68f2d2..908a2a9e9b1d 100644
--- a/jetty-jspc-maven-plugin/pom.xml
+++ b/jetty-jspc-maven-plugin/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-jspc-maven-plugin
diff --git a/jetty-keystore/pom.xml b/jetty-keystore/pom.xml
index 929f57082fde..a82b68d47f57 100644
--- a/jetty-keystore/pom.xml
+++ b/jetty-keystore/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-keystore
diff --git a/jetty-maven-plugin/pom.xml b/jetty-maven-plugin/pom.xml
index 9ede165698a0..b59bdc19d5de 100644
--- a/jetty-maven-plugin/pom.xml
+++ b/jetty-maven-plugin/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-maven-plugin
diff --git a/jetty-memcached/jetty-memcached-sessions/pom.xml b/jetty-memcached/jetty-memcached-sessions/pom.xml
index a07f7e8bc0c6..c1f575f2e271 100644
--- a/jetty-memcached/jetty-memcached-sessions/pom.xml
+++ b/jetty-memcached/jetty-memcached-sessions/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.memcached
memcached-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-memcached/pom.xml b/jetty-memcached/pom.xml
index 3cdcc457599a..48a45479bee2 100644
--- a/jetty-memcached/pom.xml
+++ b/jetty-memcached/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-nosql/pom.xml b/jetty-nosql/pom.xml
index 30611717b51a..e4f9467b561d 100644
--- a/jetty-nosql/pom.xml
+++ b/jetty-nosql/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-nosql
diff --git a/jetty-openid/pom.xml b/jetty-openid/pom.xml
index 1684200f371e..406487188523 100644
--- a/jetty-openid/pom.xml
+++ b/jetty-openid/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-osgi/jetty-osgi-alpn/pom.xml b/jetty-osgi/jetty-osgi-alpn/pom.xml
index 1d53424c8f10..3b840770894d 100644
--- a/jetty-osgi/jetty-osgi-alpn/pom.xml
+++ b/jetty-osgi/jetty-osgi-alpn/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
diff --git a/jetty-osgi/jetty-osgi-boot-jsp/pom.xml b/jetty-osgi/jetty-osgi-boot-jsp/pom.xml
index b01af468921f..e28ba02bfa06 100644
--- a/jetty-osgi/jetty-osgi-boot-jsp/pom.xml
+++ b/jetty-osgi/jetty-osgi-boot-jsp/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-osgi-boot-jsp
diff --git a/jetty-osgi/jetty-osgi-boot-warurl/pom.xml b/jetty-osgi/jetty-osgi-boot-warurl/pom.xml
index 5b71dee8cc3f..e84053f723f8 100644
--- a/jetty-osgi/jetty-osgi-boot-warurl/pom.xml
+++ b/jetty-osgi/jetty-osgi-boot-warurl/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
../pom.xml
4.0.0
diff --git a/jetty-osgi/jetty-osgi-boot/pom.xml b/jetty-osgi/jetty-osgi-boot/pom.xml
index db69a9a6169d..9d9d85bd2389 100644
--- a/jetty-osgi/jetty-osgi-boot/pom.xml
+++ b/jetty-osgi/jetty-osgi-boot/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-osgi-boot
diff --git a/jetty-osgi/jetty-osgi-httpservice/pom.xml b/jetty-osgi/jetty-osgi-httpservice/pom.xml
index cd161128ba0a..cca35e2cd4a8 100644
--- a/jetty-osgi/jetty-osgi-httpservice/pom.xml
+++ b/jetty-osgi/jetty-osgi-httpservice/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-httpservice
diff --git a/jetty-osgi/pom.xml b/jetty-osgi/pom.xml
index 5d2e28f2278b..fca12c1f3756 100644
--- a/jetty-osgi/pom.xml
+++ b/jetty-osgi/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-osgi/test-jetty-osgi-context/pom.xml b/jetty-osgi/test-jetty-osgi-context/pom.xml
index e2545adf72b3..506c26b99317 100644
--- a/jetty-osgi/test-jetty-osgi-context/pom.xml
+++ b/jetty-osgi/test-jetty-osgi-context/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
test-jetty-osgi-context
diff --git a/jetty-osgi/test-jetty-osgi-fragment/pom.xml b/jetty-osgi/test-jetty-osgi-fragment/pom.xml
index 52fc38febb49..570d3abc3735 100644
--- a/jetty-osgi/test-jetty-osgi-fragment/pom.xml
+++ b/jetty-osgi/test-jetty-osgi-fragment/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
../pom.xml
4.0.0
diff --git a/jetty-osgi/test-jetty-osgi-server/pom.xml b/jetty-osgi/test-jetty-osgi-server/pom.xml
index f5d310b89aa1..2c627837f013 100644
--- a/jetty-osgi/test-jetty-osgi-server/pom.xml
+++ b/jetty-osgi/test-jetty-osgi-server/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
test-jetty-osgi-server
diff --git a/jetty-osgi/test-jetty-osgi-webapp-resources/pom.xml b/jetty-osgi/test-jetty-osgi-webapp-resources/pom.xml
index 5694ac0802fc..fee6a1ad6393 100644
--- a/jetty-osgi/test-jetty-osgi-webapp-resources/pom.xml
+++ b/jetty-osgi/test-jetty-osgi-webapp-resources/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
test-jetty-osgi-webapp-resources
diff --git a/jetty-osgi/test-jetty-osgi-webapp/pom.xml b/jetty-osgi/test-jetty-osgi-webapp/pom.xml
index b2142ae53b70..83aed5a76836 100644
--- a/jetty-osgi/test-jetty-osgi-webapp/pom.xml
+++ b/jetty-osgi/test-jetty-osgi-webapp/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
../pom.xml
4.0.0
diff --git a/jetty-osgi/test-jetty-osgi/pom.xml b/jetty-osgi/test-jetty-osgi/pom.xml
index 871f47a4eed9..73b4f26567c7 100644
--- a/jetty-osgi/test-jetty-osgi/pom.xml
+++ b/jetty-osgi/test-jetty-osgi/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.osgi
jetty-osgi-project
- 11.0.16-SNAPSHOT
+ 11.0.16
../pom.xml
4.0.0
diff --git a/jetty-p2/pom.xml b/jetty-p2/pom.xml
index 93bb6536c8be..082adde6064a 100644
--- a/jetty-p2/pom.xml
+++ b/jetty-p2/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-p2
diff --git a/jetty-plus/pom.xml b/jetty-plus/pom.xml
index 72b9c00d93e7..5d95d1838da9 100644
--- a/jetty-plus/pom.xml
+++ b/jetty-plus/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-proxy/pom.xml b/jetty-proxy/pom.xml
index 49253d8e7087..2414efe797e7 100644
--- a/jetty-proxy/pom.xml
+++ b/jetty-proxy/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-quic/pom.xml b/jetty-quic/pom.xml
index 69be99046974..24e0c8aa4e47 100644
--- a/jetty-quic/pom.xml
+++ b/jetty-quic/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-quic/quic-client/pom.xml b/jetty-quic/quic-client/pom.xml
index dbef7cc06117..3ad5cacebe3a 100644
--- a/jetty-quic/quic-client/pom.xml
+++ b/jetty-quic/quic-client/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.quic
quic-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-quic/quic-common/pom.xml b/jetty-quic/quic-common/pom.xml
index 83abf59b16aa..6a6b7663920c 100644
--- a/jetty-quic/quic-common/pom.xml
+++ b/jetty-quic/quic-common/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.quic
quic-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-quic/quic-quiche/pom.xml b/jetty-quic/quic-quiche/pom.xml
index 8701f9863e83..c7735c375172 100644
--- a/jetty-quic/quic-quiche/pom.xml
+++ b/jetty-quic/quic-quiche/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.quic
quic-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-quic/quic-quiche/quic-quiche-common/pom.xml b/jetty-quic/quic-quiche/quic-quiche-common/pom.xml
index 307c1e63465a..3b131ee41df7 100644
--- a/jetty-quic/quic-quiche/quic-quiche-common/pom.xml
+++ b/jetty-quic/quic-quiche/quic-quiche-common/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.quic
quic-quiche
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-quic/quic-quiche/quic-quiche-foreign-incubator/pom.xml b/jetty-quic/quic-quiche/quic-quiche-foreign-incubator/pom.xml
index be6016c544d9..c730f3675317 100644
--- a/jetty-quic/quic-quiche/quic-quiche-foreign-incubator/pom.xml
+++ b/jetty-quic/quic-quiche/quic-quiche-foreign-incubator/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.quic
quic-quiche
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-quic/quic-quiche/quic-quiche-jna/pom.xml b/jetty-quic/quic-quiche/quic-quiche-jna/pom.xml
index 0977685a3ab7..1a47e90c9e8a 100644
--- a/jetty-quic/quic-quiche/quic-quiche-jna/pom.xml
+++ b/jetty-quic/quic-quiche/quic-quiche-jna/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.quic
quic-quiche
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-quic/quic-server/pom.xml b/jetty-quic/quic-server/pom.xml
index 090233fecfcc..993813286736 100644
--- a/jetty-quic/quic-server/pom.xml
+++ b/jetty-quic/quic-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.quic
quic-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-quickstart/pom.xml b/jetty-quickstart/pom.xml
index b02e1da39255..b5b868256b98 100644
--- a/jetty-quickstart/pom.xml
+++ b/jetty-quickstart/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-rewrite/pom.xml b/jetty-rewrite/pom.xml
index a2fb67a2d28a..23901cdada4d 100644
--- a/jetty-rewrite/pom.xml
+++ b/jetty-rewrite/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-runner/pom.xml b/jetty-runner/pom.xml
index 8d568704c705..02464df506b4 100644
--- a/jetty-runner/pom.xml
+++ b/jetty-runner/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-runner
diff --git a/jetty-security/pom.xml b/jetty-security/pom.xml
index ec1ab5fce93f..cf9476cd458b 100644
--- a/jetty-security/pom.xml
+++ b/jetty-security/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-server/pom.xml b/jetty-server/pom.xml
index b4ff354cb694..4c7f1e77d8e4 100644
--- a/jetty-server/pom.xml
+++ b/jetty-server/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-servlet/pom.xml b/jetty-servlet/pom.xml
index 8648e2237df1..ccd1a497c8ed 100644
--- a/jetty-servlet/pom.xml
+++ b/jetty-servlet/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-servlets/pom.xml b/jetty-servlets/pom.xml
index 4ffdc2f26461..642844182362 100644
--- a/jetty-servlets/pom.xml
+++ b/jetty-servlets/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-slf4j-impl/pom.xml b/jetty-slf4j-impl/pom.xml
index a804dbcec28f..d0f0c7a6f04c 100644
--- a/jetty-slf4j-impl/pom.xml
+++ b/jetty-slf4j-impl/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-start/pom.xml b/jetty-start/pom.xml
index 4bc4b7add0fb..c1a6084ef3f1 100644
--- a/jetty-start/pom.xml
+++ b/jetty-start/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-start
diff --git a/jetty-unixdomain-server/pom.xml b/jetty-unixdomain-server/pom.xml
index ce62c8646a75..6f83a9b14c8a 100644
--- a/jetty-unixdomain-server/pom.xml
+++ b/jetty-unixdomain-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-unixsocket/jetty-unixsocket-client/pom.xml b/jetty-unixsocket/jetty-unixsocket-client/pom.xml
index a3477cf8d28a..644700072616 100644
--- a/jetty-unixsocket/jetty-unixsocket-client/pom.xml
+++ b/jetty-unixsocket/jetty-unixsocket-client/pom.xml
@@ -3,7 +3,7 @@
jetty-unixsocket
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-unixsocket/jetty-unixsocket-common/pom.xml b/jetty-unixsocket/jetty-unixsocket-common/pom.xml
index 1ede6c263dc3..1ede65895ba3 100644
--- a/jetty-unixsocket/jetty-unixsocket-common/pom.xml
+++ b/jetty-unixsocket/jetty-unixsocket-common/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty
jetty-unixsocket
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-unixsocket/jetty-unixsocket-server/pom.xml b/jetty-unixsocket/jetty-unixsocket-server/pom.xml
index 87df3527abf1..702a6e270add 100644
--- a/jetty-unixsocket/jetty-unixsocket-server/pom.xml
+++ b/jetty-unixsocket/jetty-unixsocket-server/pom.xml
@@ -3,7 +3,7 @@
jetty-unixsocket
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-unixsocket/pom.xml b/jetty-unixsocket/pom.xml
index 83d65e7fa76a..6656028ed7c5 100644
--- a/jetty-unixsocket/pom.xml
+++ b/jetty-unixsocket/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-util-ajax/pom.xml b/jetty-util-ajax/pom.xml
index 1c277ab82832..b0b3efe8f961 100644
--- a/jetty-util-ajax/pom.xml
+++ b/jetty-util-ajax/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-util-ajax
diff --git a/jetty-util/pom.xml b/jetty-util/pom.xml
index 51e536333a8f..979303d18522 100644
--- a/jetty-util/pom.xml
+++ b/jetty-util/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-util
diff --git a/jetty-webapp/pom.xml b/jetty-webapp/pom.xml
index 1c393d8c79df..7f3353399e35 100644
--- a/jetty-webapp/pom.xml
+++ b/jetty-webapp/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/pom.xml b/jetty-websocket/pom.xml
index 7b5c83451bbe..5d29f95ef48b 100644
--- a/jetty-websocket/pom.xml
+++ b/jetty-websocket/pom.xml
@@ -3,7 +3,7 @@
jetty-project
org.eclipse.jetty
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-core-client/pom.xml b/jetty-websocket/websocket-core-client/pom.xml
index 4331ff327a7f..d3855f7649c0 100644
--- a/jetty-websocket/websocket-core-client/pom.xml
+++ b/jetty-websocket/websocket-core-client/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-core-common/pom.xml b/jetty-websocket/websocket-core-common/pom.xml
index d1c74817c747..2a89e831bc6e 100644
--- a/jetty-websocket/websocket-core-common/pom.xml
+++ b/jetty-websocket/websocket-core-common/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-core-server/pom.xml b/jetty-websocket/websocket-core-server/pom.xml
index 9a38238930d6..fac7162f7de0 100644
--- a/jetty-websocket/websocket-core-server/pom.xml
+++ b/jetty-websocket/websocket-core-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-core-tests/pom.xml b/jetty-websocket/websocket-core-tests/pom.xml
index 534725d76b87..b43269796a0e 100644
--- a/jetty-websocket/websocket-core-tests/pom.xml
+++ b/jetty-websocket/websocket-core-tests/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-jakarta-client/pom.xml b/jetty-websocket/websocket-jakarta-client/pom.xml
index 984ffbf440ff..8f7cc8f04104 100644
--- a/jetty-websocket/websocket-jakarta-client/pom.xml
+++ b/jetty-websocket/websocket-jakarta-client/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-jakarta-common/pom.xml b/jetty-websocket/websocket-jakarta-common/pom.xml
index ca26786eece8..1d0d8db0cdc5 100644
--- a/jetty-websocket/websocket-jakarta-common/pom.xml
+++ b/jetty-websocket/websocket-jakarta-common/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-jakarta-server/pom.xml b/jetty-websocket/websocket-jakarta-server/pom.xml
index 029b00650ef1..f7cc32aa6d97 100644
--- a/jetty-websocket/websocket-jakarta-server/pom.xml
+++ b/jetty-websocket/websocket-jakarta-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-jakarta-tests/pom.xml b/jetty-websocket/websocket-jakarta-tests/pom.xml
index def557061390..98d6263820c1 100644
--- a/jetty-websocket/websocket-jakarta-tests/pom.xml
+++ b/jetty-websocket/websocket-jakarta-tests/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-jetty-api/pom.xml b/jetty-websocket/websocket-jetty-api/pom.xml
index 16e992436225..8b574678de07 100644
--- a/jetty-websocket/websocket-jetty-api/pom.xml
+++ b/jetty-websocket/websocket-jetty-api/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-jetty-client/pom.xml b/jetty-websocket/websocket-jetty-client/pom.xml
index bdb3bdbdda9f..893fa8a5b056 100644
--- a/jetty-websocket/websocket-jetty-client/pom.xml
+++ b/jetty-websocket/websocket-jetty-client/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-jetty-common/pom.xml b/jetty-websocket/websocket-jetty-common/pom.xml
index 66877feae395..48810fe55cf6 100644
--- a/jetty-websocket/websocket-jetty-common/pom.xml
+++ b/jetty-websocket/websocket-jetty-common/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-jetty-server/pom.xml b/jetty-websocket/websocket-jetty-server/pom.xml
index 158083abe56d..afee39193a54 100644
--- a/jetty-websocket/websocket-jetty-server/pom.xml
+++ b/jetty-websocket/websocket-jetty-server/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-jetty-tests/pom.xml b/jetty-websocket/websocket-jetty-tests/pom.xml
index b268e50ccde0..3faf4a09e733 100644
--- a/jetty-websocket/websocket-jetty-tests/pom.xml
+++ b/jetty-websocket/websocket-jetty-tests/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-websocket/websocket-servlet/pom.xml b/jetty-websocket/websocket-servlet/pom.xml
index 189b7dfcbb7d..8909d74df392 100644
--- a/jetty-websocket/websocket-servlet/pom.xml
+++ b/jetty-websocket/websocket-servlet/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.websocket
websocket-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/jetty-xml/pom.xml b/jetty-xml/pom.xml
index 4354c660a786..9f92614be384 100644
--- a/jetty-xml/pom.xml
+++ b/jetty-xml/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jetty-xml
diff --git a/pom.xml b/pom.xml
index 3880727aa902..f7cd8f30e978 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
Jetty :: Project
The Eclipse Jetty Project
pom
diff --git a/tests/jetty-home-tester/pom.xml b/tests/jetty-home-tester/pom.xml
index c8c4399fea09..ad52124af367 100644
--- a/tests/jetty-home-tester/pom.xml
+++ b/tests/jetty-home-tester/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/jetty-http-tools/pom.xml b/tests/jetty-http-tools/pom.xml
index 4f282b0bb46a..5947908b8ae8 100644
--- a/tests/jetty-http-tools/pom.xml
+++ b/tests/jetty-http-tools/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/jetty-jmh/pom.xml b/tests/jetty-jmh/pom.xml
index d755e36e4916..894294d6ae99 100644
--- a/tests/jetty-jmh/pom.xml
+++ b/tests/jetty-jmh/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/pom.xml b/tests/pom.xml
index b1969b296c91..c6282d89e0da 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty
jetty-project
- 11.0.16-SNAPSHOT
+ 11.0.16
../pom.xml
org.eclipse.jetty.tests
diff --git a/tests/test-cdi/pom.xml b/tests/test-cdi/pom.xml
index 7afd47f1ba83..9a7aebf58a6c 100644
--- a/tests/test-cdi/pom.xml
+++ b/tests/test-cdi/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-distribution/pom.xml b/tests/test-distribution/pom.xml
index fb5ad2dda79b..dc681ae4a3d7 100644
--- a/tests/test-distribution/pom.xml
+++ b/tests/test-distribution/pom.xml
@@ -2,7 +2,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-http-client-transport/pom.xml b/tests/test-http-client-transport/pom.xml
index 2605446079f0..4d26792990de 100644
--- a/tests/test-http-client-transport/pom.xml
+++ b/tests/test-http-client-transport/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-integration/pom.xml b/tests/test-integration/pom.xml
index c9bc7f154c0d..563a939a9538 100644
--- a/tests/test-integration/pom.xml
+++ b/tests/test-integration/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
test-integration
diff --git a/tests/test-jmx/jmx-webapp-it/pom.xml b/tests/test-jmx/jmx-webapp-it/pom.xml
index 0f5f19eada7d..98af7940d20c 100644
--- a/tests/test-jmx/jmx-webapp-it/pom.xml
+++ b/tests/test-jmx/jmx-webapp-it/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-jmx-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
jmx-webapp-it
diff --git a/tests/test-jmx/jmx-webapp/pom.xml b/tests/test-jmx/jmx-webapp/pom.xml
index 4e7894f254d1..f55082d15da4 100644
--- a/tests/test-jmx/jmx-webapp/pom.xml
+++ b/tests/test-jmx/jmx-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-jmx-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
jmx-webapp
war
diff --git a/tests/test-jmx/pom.xml b/tests/test-jmx/pom.xml
index 74ca99c206ce..3cbed853eb33 100644
--- a/tests/test-jmx/pom.xml
+++ b/tests/test-jmx/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
test-jmx-parent
diff --git a/tests/test-jndi/pom.xml b/tests/test-jndi/pom.xml
index 6db97af2da34..e7e010974e59 100644
--- a/tests/test-jndi/pom.xml
+++ b/tests/test-jndi/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-jpms/pom.xml b/tests/test-jpms/pom.xml
index 1a27d2bcc612..2f4479ecfb34 100644
--- a/tests/test-jpms/pom.xml
+++ b/tests/test-jpms/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
test-jpms
diff --git a/tests/test-jpms/test-jpms-websocket-core/pom.xml b/tests/test-jpms/test-jpms-websocket-core/pom.xml
index 747845e27d57..92dc399a4835 100644
--- a/tests/test-jpms/test-jpms-websocket-core/pom.xml
+++ b/tests/test-jpms/test-jpms-websocket-core/pom.xml
@@ -3,7 +3,7 @@
test-jpms
org.eclipse.jetty.tests
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
test-jpms-websocket-core
diff --git a/tests/test-loginservice/pom.xml b/tests/test-loginservice/pom.xml
index 7e5c849e695b..7c23059fed76 100644
--- a/tests/test-loginservice/pom.xml
+++ b/tests/test-loginservice/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-loginservice
Jetty Tests :: Login Service
diff --git a/tests/test-quickstart/pom.xml b/tests/test-quickstart/pom.xml
index ed65888f0944..0e1bafc5ce36 100644
--- a/tests/test-quickstart/pom.xml
+++ b/tests/test-quickstart/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
../pom.xml
4.0.0
diff --git a/tests/test-sessions/pom.xml b/tests/test-sessions/pom.xml
index 2718f5d17cf7..ca783df4ae41 100644
--- a/tests/test-sessions/pom.xml
+++ b/tests/test-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-sessions-parent
Jetty Tests :: Sessions :: Parent
diff --git a/tests/test-sessions/test-file-sessions/pom.xml b/tests/test-sessions/test-file-sessions/pom.xml
index 074a569b06e7..c14a77be572b 100644
--- a/tests/test-sessions/test-file-sessions/pom.xml
+++ b/tests/test-sessions/test-file-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-sessions-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-file-sessions
Jetty Tests :: Sessions :: File
diff --git a/tests/test-sessions/test-gcloud-sessions/pom.xml b/tests/test-sessions/test-gcloud-sessions/pom.xml
index 880026f3495e..876fd5255363 100644
--- a/tests/test-sessions/test-gcloud-sessions/pom.xml
+++ b/tests/test-sessions/test-gcloud-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-sessions-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-gcloud-sessions
Jetty Tests :: Sessions :: GCloud
diff --git a/tests/test-sessions/test-hazelcast-sessions/pom.xml b/tests/test-sessions/test-hazelcast-sessions/pom.xml
index 0fe358c96f7f..09903514618b 100644
--- a/tests/test-sessions/test-hazelcast-sessions/pom.xml
+++ b/tests/test-sessions/test-hazelcast-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-sessions-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-hazelcast-sessions
Jetty Tests :: Sessions :: Hazelcast
diff --git a/tests/test-sessions/test-infinispan-sessions/pom.xml b/tests/test-sessions/test-infinispan-sessions/pom.xml
index a5e5cc9e23c9..1642e7790c29 100644
--- a/tests/test-sessions/test-infinispan-sessions/pom.xml
+++ b/tests/test-sessions/test-infinispan-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-sessions-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-infinispan-sessions
Jetty Tests :: Sessions :: Infinispan
diff --git a/tests/test-sessions/test-jdbc-sessions/pom.xml b/tests/test-sessions/test-jdbc-sessions/pom.xml
index edcd22e2f620..29116f44ab07 100644
--- a/tests/test-sessions/test-jdbc-sessions/pom.xml
+++ b/tests/test-sessions/test-jdbc-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-sessions-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-jdbc-sessions
Jetty Tests :: Sessions :: JDBC
diff --git a/tests/test-sessions/test-memcached-sessions/pom.xml b/tests/test-sessions/test-memcached-sessions/pom.xml
index 878d53a7abcc..bbfe899e8af6 100644
--- a/tests/test-sessions/test-memcached-sessions/pom.xml
+++ b/tests/test-sessions/test-memcached-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-sessions-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-memcached-sessions
Jetty Tests :: Sessions :: Memcached
diff --git a/tests/test-sessions/test-mongodb-sessions/pom.xml b/tests/test-sessions/test-mongodb-sessions/pom.xml
index 28bb24ae5f12..629f885ad9e5 100644
--- a/tests/test-sessions/test-mongodb-sessions/pom.xml
+++ b/tests/test-sessions/test-mongodb-sessions/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-sessions-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-mongodb-sessions
Jetty Tests :: Sessions :: Mongo
diff --git a/tests/test-sessions/test-sessions-common/pom.xml b/tests/test-sessions/test-sessions-common/pom.xml
index b9a1eaf123fc..050f581dc9f4 100644
--- a/tests/test-sessions/test-sessions-common/pom.xml
+++ b/tests/test-sessions/test-sessions-common/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-sessions-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-sessions-common
Jetty Tests :: Sessions :: Common
diff --git a/tests/test-webapps/pom.xml b/tests/test-webapps/pom.xml
index 102ca583f885..d4010977d523 100644
--- a/tests/test-webapps/pom.xml
+++ b/tests/test-webapps/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
../pom.xml
test-webapps-parent
diff --git a/tests/test-webapps/test-bad-websocket-webapp/pom.xml b/tests/test-webapps/test-bad-websocket-webapp/pom.xml
index 70ee1ae3901c..f9cda375976d 100644
--- a/tests/test-webapps/test-bad-websocket-webapp/pom.xml
+++ b/tests/test-webapps/test-bad-websocket-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-webapps/test-cdi-common-webapp/pom.xml b/tests/test-webapps/test-cdi-common-webapp/pom.xml
index 32914bcf4523..b3c3af7dd983 100644
--- a/tests/test-webapps/test-cdi-common-webapp/pom.xml
+++ b/tests/test-webapps/test-cdi-common-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-webapps/test-felix-webapp/pom.xml b/tests/test-webapps/test-felix-webapp/pom.xml
index 92ae0652ad8d..5b25b4efcfe2 100644
--- a/tests/test-webapps/test-felix-webapp/pom.xml
+++ b/tests/test-webapps/test-felix-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-webapps/test-http2-webapp/pom.xml b/tests/test-webapps/test-http2-webapp/pom.xml
index 118757892d83..f7d3ecb4ac71 100644
--- a/tests/test-webapps/test-http2-webapp/pom.xml
+++ b/tests/test-webapps/test-http2-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-webapps/test-openid-webapp/pom.xml b/tests/test-webapps/test-openid-webapp/pom.xml
index 8d3a4de2967a..2f677fa9d9c0 100644
--- a/tests/test-webapps/test-openid-webapp/pom.xml
+++ b/tests/test-webapps/test-openid-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-webapps/test-owb-cdi-webapp/pom.xml b/tests/test-webapps/test-owb-cdi-webapp/pom.xml
index 2b6d93ee5f76..fb0276d3af4c 100644
--- a/tests/test-webapps/test-owb-cdi-webapp/pom.xml
+++ b/tests/test-webapps/test-owb-cdi-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-webapps/test-simple-session-webapp/pom.xml b/tests/test-webapps/test-simple-session-webapp/pom.xml
index 4e8447288f81..2fe9adc8d960 100644
--- a/tests/test-webapps/test-simple-session-webapp/pom.xml
+++ b/tests/test-webapps/test-simple-session-webapp/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-simple-session-webapp
diff --git a/tests/test-webapps/test-webapp-rfc2616/pom.xml b/tests/test-webapps/test-webapp-rfc2616/pom.xml
index 537802ac8b52..b41354db2720 100644
--- a/tests/test-webapps/test-webapp-rfc2616/pom.xml
+++ b/tests/test-webapps/test-webapp-rfc2616/pom.xml
@@ -4,7 +4,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
test-webapp-rfc2616
Jetty Tests :: WebApp :: RFC2616
diff --git a/tests/test-webapps/test-websocket-client-provided-webapp/pom.xml b/tests/test-webapps/test-websocket-client-provided-webapp/pom.xml
index bf7a29345173..56f71584e989 100644
--- a/tests/test-webapps/test-websocket-client-provided-webapp/pom.xml
+++ b/tests/test-webapps/test-websocket-client-provided-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-webapps/test-websocket-client-webapp/pom.xml b/tests/test-webapps/test-websocket-client-webapp/pom.xml
index 06498eabc43b..e11a729789df 100644
--- a/tests/test-webapps/test-websocket-client-webapp/pom.xml
+++ b/tests/test-webapps/test-websocket-client-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-webapps/test-websocket-webapp/pom.xml b/tests/test-webapps/test-websocket-webapp/pom.xml
index 9be743035e91..7f7b3705d029 100644
--- a/tests/test-webapps/test-websocket-webapp/pom.xml
+++ b/tests/test-webapps/test-websocket-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-webapps/test-weld-cdi-webapp/pom.xml b/tests/test-webapps/test-weld-cdi-webapp/pom.xml
index 09828c61a213..84a156c898b9 100644
--- a/tests/test-webapps/test-weld-cdi-webapp/pom.xml
+++ b/tests/test-webapps/test-weld-cdi-webapp/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
test-webapps-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0
diff --git a/tests/test-websocket-autobahn/pom.xml b/tests/test-websocket-autobahn/pom.xml
index 96640892d637..3fad4e330866 100644
--- a/tests/test-websocket-autobahn/pom.xml
+++ b/tests/test-websocket-autobahn/pom.xml
@@ -3,7 +3,7 @@
org.eclipse.jetty.tests
tests-parent
- 11.0.16-SNAPSHOT
+ 11.0.16
4.0.0