From 04cbb13ad32e7fc12430f6bc635ad90c6b5b740d Mon Sep 17 00:00:00 2001 From: Greg Wilkins Date: Sat, 18 Aug 2018 11:52:28 +1000 Subject: [PATCH 01/12] Issue #2787 BadMessage if bad query detected in dispatcher Signed-off-by: Greg Wilkins --- .../org/eclipse/jetty/server/Request.java | 11 +++- .../eclipse/jetty/servlet/ServletHandler.java | 8 +++ .../eclipse/jetty/servlet/DispatcherTest.java | 64 ++++++++++++++++++- 3 files changed, 77 insertions(+), 6 deletions(-) diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/Request.java b/jetty-server/src/main/java/org/eclipse/jetty/server/Request.java index 6068f7c34d0..b75d0e6548e 100644 --- a/jetty-server/src/main/java/org/eclipse/jetty/server/Request.java +++ b/jetty-server/src/main/java/org/eclipse/jetty/server/Request.java @@ -2390,8 +2390,6 @@ public class Request implements HttpServletRequest /* ------------------------------------------------------------ */ public void mergeQueryParameters(String oldQuery,String newQuery, boolean updateQueryString) { - // TODO This is seriously ugly - MultiMap newQueryParams = null; // Have to assume ENCODING because we can't know otherwise. if (newQuery!=null) @@ -2404,7 +2402,14 @@ public class Request implements HttpServletRequest if (oldQueryParams == null && oldQuery != null) { oldQueryParams = new MultiMap<>(); - UrlEncoded.decodeTo(oldQuery, oldQueryParams, getQueryEncoding()); + try + { + UrlEncoded.decodeTo(oldQuery, oldQueryParams, getQueryEncoding()); + } + catch(Throwable th) + { + throw new BadMessageException(400,"Bad query encoding",th); + } } MultiMap mergedQueryParams; diff --git a/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHandler.java b/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHandler.java index 269ad2b44c1..ee2f0e01d0c 100644 --- a/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHandler.java +++ b/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHandler.java @@ -50,6 +50,7 @@ import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; +import org.eclipse.jetty.http.BadMessageException; import org.eclipse.jetty.http.HttpHeader; import org.eclipse.jetty.http.HttpHeaderValue; import org.eclipse.jetty.http.PathMap; @@ -647,8 +648,15 @@ public class ServletHandler extends ScopedHandler else response.sendError(HttpServletResponse.SC_SERVICE_UNAVAILABLE); } + else if (th instanceof BadMessageException) + { + BadMessageException bme = (BadMessageException)th; + response.sendError(bme.getCode(),bme.getMessage()); + } else + { response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } } else { diff --git a/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DispatcherTest.java b/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DispatcherTest.java index e7fb37e280c..c2657eba638 100644 --- a/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DispatcherTest.java +++ b/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DispatcherTest.java @@ -18,6 +18,7 @@ package org.eclipse.jetty.servlet; +import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.startsWith; import static org.junit.Assert.assertEquals; @@ -59,6 +60,8 @@ import org.eclipse.jetty.server.handler.ResourceHandler; import org.eclipse.jetty.toolchain.test.MavenTestingUtils; import org.eclipse.jetty.util.TypeUtil; import org.eclipse.jetty.util.UrlEncoded; +import org.eclipse.jetty.util.log.Log; +import org.eclipse.jetty.util.log.StacklessLogging; import org.junit.After; import org.junit.Assert; import org.junit.Before; @@ -156,6 +159,42 @@ public class DispatcherTest assertEquals(expected, responses); } + @Test + public void testForwardWithBadParams() throws Exception + { + try(StacklessLogging nostack = new StacklessLogging(ServletHandler.class)) + { + Log.getLogger(ServletHandler.class).info("Expect Not valid UTF8 warnings..."); + _contextHandler.addServlet(AlwaysForwardServlet.class, "/forward/*"); + _contextHandler.addServlet(EchoServlet.class, "/echo/*"); + + String response; + + response = _connector.getResponse("GET /context/forward/?echo=allgood HTTP/1.0\n\n"); + assertThat(response,containsString(" 200 OK")); + assertThat(response,containsString("allgood")); + + response = _connector.getResponse("GET /context/forward/params?echo=allgood HTTP/1.0\n\n"); + assertThat(response,containsString(" 200 OK")); + assertThat(response,containsString("allgood")); + assertThat(response,containsString("forward")); + + response = _connector.getResponse("GET /context/forward/badparams?echo=badparams HTTP/1.0\n\n"); + assertThat(response,containsString(" 500 ")); + + response = _connector.getResponse("GET /context/forward/?echo=badclient&bad=%88%A4 HTTP/1.0\n\n"); + assertThat(response,containsString(" 400 ")); + + response = _connector.getResponse("GET /context/forward/params?echo=badclient&bad=%88%A4 HTTP/1.0\n\n"); + assertThat(response,containsString(" 400 ")); + + response = _connector.getResponse("GET /context/forward/badparams?echo=badclientandparam&bad=%88%A4 HTTP/1.0\n\n"); + assertThat(response,containsString(" 500 ")); + } + } + + + @Test public void testInclude() throws Exception { @@ -358,6 +397,20 @@ public class DispatcherTest dispatcher.forward(request, response); } } + + public static class AlwaysForwardServlet extends HttpServlet implements Servlet + { + @Override + protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException + { + if ("/params".equals(request.getPathInfo())) + getServletContext().getRequestDispatcher("/echo?echo=forward").forward(request, response); + else if ("/badparams".equals(request.getPathInfo())) + getServletContext().getRequestDispatcher("/echo?echo=forward&fbad=%88%A4").forward(request, response); + else + getServletContext().getRequestDispatcher("/echo").forward(request, response); + } + } public static class ForwardNonUTF8Servlet extends HttpServlet implements Servlet @@ -480,15 +533,20 @@ public class DispatcherTest @Override public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException { - String echoText = req.getParameter("echo"); + String[] echoText = req.getParameterValues("echo"); - if ( echoText == null ) + if ( echoText == null || echoText.length==0) { throw new ServletException("echo is a required parameter"); } + else if (echoText.length==1) + { + res.getWriter().print(echoText[0]); + } else { - res.getWriter().print(echoText); + for (String text:echoText) + res.getWriter().print(text); } } } From 9cb9be83fd501c386dba810c83ace1a884568bc6 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Thu, 30 Aug 2018 14:17:08 +1000 Subject: [PATCH 02/12] Issue #2846 Jaas ldap unit test (#2864) * #2846 add jaas ldap unit tests Signed-off-by: olivier lamy --- jetty-jaas/pom.xml | 61 ++++++ .../jetty/jaas/spi/LdapLoginModule.java | 17 +- .../jetty/jaas/JAASLdapLoginServiceTest.java | 177 ++++++++++++++++++ pom.xml | 5 + 4 files changed, 252 insertions(+), 8 deletions(-) create mode 100644 jetty-jaas/src/test/java/org/eclipse/jetty/jaas/JAASLdapLoginServiceTest.java diff --git a/jetty-jaas/pom.xml b/jetty-jaas/pom.xml index 30be0a63bd8..4d972910158 100644 --- a/jetty-jaas/pom.xml +++ b/jetty-jaas/pom.xml @@ -10,6 +10,8 @@ Jetty JAAS support ${project.groupId}.jaas + + 2.0.0-M24 @@ -39,5 +41,64 @@ jetty-test-helper test + + org.slf4j + slf4j-simple + test + + + org.apache.directory.server + apacheds-all + ${apacheds.version} + test + + + + org.apache.directory.shared + shared-ldap-schema + + + org.apache.directory.api + api-ldap-schema-data + + + + + org.apache.directory.server + apacheds-server-integ + ${apacheds.version} + test + + + + org.apache.directory.shared + shared-ldap-schema + + + org.apache.directory.api + api-ldap-schema-data + + + + + org.apache.directory.server + apacheds-core-integ + ${apacheds.version} + test + + + + org.apache.directory.shared + shared-ldap-schema + + + org.apache.directory.api + api-ldap-schema-data + + + diff --git a/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/spi/LdapLoginModule.java b/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/spi/LdapLoginModule.java index bb6b5da68d2..6b9cd86c28e 100644 --- a/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/spi/LdapLoginModule.java +++ b/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/spi/LdapLoginModule.java @@ -304,7 +304,7 @@ public class LdapLoginModule extends AbstractLoginModule } } - LOG.debug("user cred is: " + ldapCredential); + if(LOG.isDebugEnabled()) LOG.debug("user cred is: " + ldapCredential); return ldapCredential; } @@ -341,7 +341,7 @@ public class LdapLoginModule extends AbstractLoginModule private List getUserRolesByDn(DirContext dirContext, String userDn) throws LoginException, NamingException { - List roleList = new ArrayList(); + List roleList = new ArrayList<>(); if (dirContext == null || _roleBaseDn == null || _roleMemberAttribute == null || _roleObjectClass == null) { @@ -357,11 +357,11 @@ public class LdapLoginModule extends AbstractLoginModule Object[] filterArguments = {_roleObjectClass, _roleMemberAttribute, userDn}; NamingEnumeration results = dirContext.search(_roleBaseDn, filter, filterArguments, ctls); - LOG.debug("Found user roles?: " + results.hasMoreElements()); + if(LOG.isDebugEnabled()) LOG.debug("Found user roles?: " + results.hasMoreElements()); while (results.hasMoreElements()) { - SearchResult result = (SearchResult)results.nextElement(); + SearchResult result = results.nextElement(); Attributes attributes = result.getAttributes(); @@ -425,7 +425,8 @@ public class LdapLoginModule extends AbstractLoginModule if (_forceBindingLogin) { authed = bindingLogin(webUserName, webCredential); - } else + } + else { // This sets read and the credential UserInfo userInfo = getUserInfo(webUserName); @@ -458,7 +459,7 @@ public class LdapLoginModule extends AbstractLoginModule { if (_debug) { - e.printStackTrace(); + LOG.info( e ); } throw new LoginException("IO Error performing login."); } @@ -466,7 +467,7 @@ public class LdapLoginModule extends AbstractLoginModule { if (_debug) { - e.printStackTrace(); + LOG.info( e ); } throw new LoginException("Error obtaining user info."); } @@ -556,7 +557,7 @@ public class LdapLoginModule extends AbstractLoginModule throw new LoginException("User not found."); } - return (SearchResult)results.nextElement(); + return results.nextElement(); } diff --git a/jetty-jaas/src/test/java/org/eclipse/jetty/jaas/JAASLdapLoginServiceTest.java b/jetty-jaas/src/test/java/org/eclipse/jetty/jaas/JAASLdapLoginServiceTest.java new file mode 100644 index 00000000000..62261b02201 --- /dev/null +++ b/jetty-jaas/src/test/java/org/eclipse/jetty/jaas/JAASLdapLoginServiceTest.java @@ -0,0 +1,177 @@ +// +// ======================================================================== +// Copyright (c) 1995-2018 Mort Bay Consulting Pty. Ltd. +// ------------------------------------------------------------------------ +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the Eclipse Public License v1.0 +// and Apache License v2.0 which accompanies this distribution. +// +// The Eclipse Public License is available at +// http://www.eclipse.org/legal/epl-v10.html +// +// The Apache License v2.0 is available at +// http://www.opensource.org/licenses/apache2.0.php +// +// You may elect to redistribute this code under either of these licenses. +// ======================================================================== +// + + +package org.eclipse.jetty.jaas; + +import org.apache.directory.server.annotations.CreateLdapServer; +import org.apache.directory.server.annotations.CreateTransport; +import org.apache.directory.server.core.annotations.ApplyLdifs; +import org.apache.directory.server.core.annotations.CreateDS; +import org.apache.directory.server.core.annotations.CreatePartition; +import org.apache.directory.server.core.integ.FrameworkRunner; +import org.apache.directory.server.ldap.LdapServer; +import org.eclipse.jetty.jaas.spi.LdapLoginModule; +import org.eclipse.jetty.security.DefaultIdentityService; +import org.eclipse.jetty.server.Request; +import org.eclipse.jetty.server.UserIdentity; +import org.junit.Test; +import org.junit.runner.RunWith; + +import javax.security.auth.login.AppConfigurationEntry; +import javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag; +import javax.security.auth.login.Configuration; +import java.util.HashMap; +import java.util.Map; + +import static org.junit.Assert.*; + +/** + * JAASLdapLoginServiceTest + * + * + */ +@RunWith( FrameworkRunner.class) +@CreateLdapServer( transports = { @CreateTransport(protocol = "LDAP" ) } ) +@CreateDS(allowAnonAccess = false, partitions = { + @CreatePartition(name = "Users Partition", suffix = "ou=people,dc=jetty,dc=org"), + @CreatePartition(name = "Groups Partition", suffix = "ou=groups,dc=jetty,dc=org")}) +@ApplyLdifs({ + // Entry 1 + "dn: ou=people,dc=jetty,dc=org", + "objectClass: organizationalunit", + "objectClass: top", + "ou: people", + // Entry # 2 + "dn:uid=someone, ou=people,dc=jetty,dc=org", + "objectClass: inetOrgPerson", + "cn: someone", + "sn: sn test", + "userPassword: complicatedpassword", + // Entry # 3 + "dn:uid=someoneelse, ou=people,dc=jetty,dc=org", + "objectClass: inetOrgPerson", + "cn: someoneelse", + "sn: sn test", + "userPassword: verycomplicatedpassword", + // Entry 4 + "dn: ou=groups,dc=jetty,dc=org", + "objectClass: organizationalunit", + "objectClass: top", + "ou: groups", + // Entry 5 + "dn: cn=developers,ou=groups,dc=jetty,dc=org", + "objectClass: groupOfUniqueNames", + "objectClass: top", + "ou: groups", + "description: People who try to build good software", + "uniquemember: uid=someone, ou=people, dc=jetty,dc=org", + "cn: developers", + // Entry 6 + "dn: cn=admin,ou=groups,dc=jetty,dc=org", + "objectClass: groupOfUniqueNames", + "objectClass: top", + "ou: groups", + "description: People who try to run software build by developers", + "uniquemember: uid=someone, ou=people, dc=jetty,dc=org", + "uniquemember: uid=someoneelse, ou=people, dc=jetty,dc=org", + "cn: admin" +}) +public class JAASLdapLoginServiceTest +{ + private static LdapServer _ldapServer; + + public static LdapServer getLdapServer() { + return _ldapServer; + } + + public static void setLdapServer(LdapServer ldapServer) { + _ldapServer = ldapServer; + } + + public static class TestConfiguration extends Configuration + { + private boolean forceBindingLogin; + + public TestConfiguration( boolean forceBindingLogin ) + { + this.forceBindingLogin = forceBindingLogin; + } + + @Override + public AppConfigurationEntry[] getAppConfigurationEntry(String name) + { + Map options = new HashMap<>( ); + options.put( "hostname", "localhost" ); + options.put( "port", Integer.toString(_ldapServer.getTransports()[0].getPort())); + options.put( "contextFactory", "com.sun.jndi.ldap.LdapCtxFactory" ); + options.put( "bindDn", "uid=admin,ou=system"); + options.put( "bindPassword", "secret"); + options.put( "userBaseDn", "ou=people,dc=jetty,dc=org" ); + options.put( "roleBaseDn","ou=groups,dc=jetty,dc=org"); + options.put( "roleNameAttribute", "cn" ); + options.put( "forceBindingLogin", Boolean.toString( forceBindingLogin ) ); + AppConfigurationEntry entry = new AppConfigurationEntry( LdapLoginModule.class.getCanonicalName(), LoginModuleControlFlag.REQUIRED, options); + + return new AppConfigurationEntry[] {entry}; + } + + } + + + @Test + public void testLdapUserIdentity() throws Exception + { + JAASLoginService ls = new JAASLoginService("foo"); + ls.setCallbackHandlerClass("org.eclipse.jetty.jaas.callback.DefaultCallbackHandler"); + ls.setIdentityService(new DefaultIdentityService()); + ls.setConfiguration(new TestConfiguration(false)); + Request request = new Request(null, null); + UserIdentity userIdentity = ls.login( "someone", "complicatedpassword", request); + assertNotNull( userIdentity ); + assertTrue( userIdentity.isUserInRole( "developers", null) ); + assertTrue( userIdentity.isUserInRole( "admin", null) ); + assertFalse( userIdentity.isUserInRole( "blabla", null) ); + + userIdentity = ls.login( "someoneelse", "verycomplicatedpassword", request); + assertNotNull( userIdentity ); + assertFalse( userIdentity.isUserInRole( "developers", null) ); + assertTrue( userIdentity.isUserInRole( "admin", null) ); + assertFalse( userIdentity.isUserInRole( "blabla", null) ); + } + + @Test + public void testLdapUserIdentityBindingLogin() throws Exception + { + JAASLoginService ls = new JAASLoginService("foo"); + ls.setCallbackHandlerClass("org.eclipse.jetty.jaas.callback.DefaultCallbackHandler"); + ls.setIdentityService(new DefaultIdentityService()); + ls.setConfiguration(new TestConfiguration(true)); + Request request = new Request(null, null); + UserIdentity userIdentity = ls.login( "someone", "complicatedpassword", request); + assertNotNull( userIdentity ); + assertTrue( userIdentity.isUserInRole( "developers", null) ); + assertTrue( userIdentity.isUserInRole( "admin", null) ); + assertFalse( userIdentity.isUserInRole( "blabla", null) ); + + userIdentity = ls.login( "someone", "wrongpassword", request); + assertNull( userIdentity ); + + } + +} diff --git a/pom.xml b/pom.xml index afb7fe48617..e502eb04159 100644 --- a/pom.xml +++ b/pom.xml @@ -1028,6 +1028,11 @@ slf4j-api ${slf4j.version} + + org.slf4j + slf4j-simple + ${slf4j.version} + com.github.jnr jnr-unixsocket From eb87415ed682fc7348c2f555cc1e33f7f986d602 Mon Sep 17 00:00:00 2001 From: Simone Bordet Date: Thu, 30 Aug 2018 11:47:50 +0200 Subject: [PATCH 03/12] Issue #2871 - Server reads -1 after client resets HTTP/2 stream. HttpInput.consume() now checks if the state is already failed, and if so it does not change it when consuming the input. Signed-off-by: Simone Bordet --- .../jetty/http2/client/StreamResetTest.java | 52 +++++++++++++++++++ .../org/eclipse/jetty/server/HttpInput.java | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/StreamResetTest.java b/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/StreamResetTest.java index 38afbd8e310..0d23a9eba50 100644 --- a/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/StreamResetTest.java +++ b/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/StreamResetTest.java @@ -777,4 +777,56 @@ public class StreamResetTest extends AbstractTest Assert.assertTrue(writeLatch.await(5, TimeUnit.SECONDS)); } + + @Test + public void testResetBeforeBlockingRead() throws Exception + { + CountDownLatch requestLatch = new CountDownLatch(1); + CountDownLatch readLatch = new CountDownLatch(1); + CountDownLatch failureLatch = new CountDownLatch(1); + start(new HttpServlet() + { + @Override + protected void service(HttpServletRequest request, HttpServletResponse response) throws IOException + { + try + { + requestLatch.countDown(); + readLatch.await(); + + // Attempt to read after reset must throw. + request.getInputStream().read(); + } + catch (InterruptedException x) + { + throw new InterruptedIOException(); + } + catch (IOException expected) + { + failureLatch.countDown(); + } + } + }); + + Session client = newClient(new Session.Listener.Adapter()); + + MetaData.Request request = newRequest("GET", new HttpFields()); + HeadersFrame frame = new HeadersFrame(request, null, false); + FuturePromise promise = new FuturePromise<>(); + client.newStream(frame, promise, new Stream.Listener.Adapter()); + Stream stream = promise.get(5, TimeUnit.SECONDS); + ByteBuffer content = ByteBuffer.wrap(new byte[1024]); + stream.data(new DataFrame(stream.getId(), content, true), Callback.NOOP); + + Assert.assertTrue(requestLatch.await(5, TimeUnit.SECONDS)); + + stream.reset(new ResetFrame(stream.getId(), ErrorCode.CANCEL_STREAM_ERROR.code), Callback.NOOP); + // Wait for the reset to arrive to the server and be processed. + Thread.sleep(1000); + + // Try to read on server. + readLatch.countDown(); + // Read on server should fail. + Assert.assertTrue(failureLatch.await(5, TimeUnit.SECONDS)); + } } diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java b/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java index 1a491a4c069..28f6d2622e1 100644 --- a/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java +++ b/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java @@ -477,7 +477,7 @@ public class HttpInput extends ServletInputStream implements Runnable private void consume(Content content) { - if (content instanceof EofContent) + if (!isError() && content instanceof EofContent) { if (content == EARLY_EOF_CONTENT) _state = EARLY_EOF; From 27208684755d94a92186989f695db2d7b21ebc51 Mon Sep 17 00:00:00 2001 From: Jesse McConnell Date: Thu, 30 Aug 2018 08:56:44 -0500 Subject: [PATCH 04/12] Updating to version 9.4.12.v20180830 --- VERSION.txt | 101 +++++++++++++- aggregates/jetty-all-compact3/pom.xml | 2 +- aggregates/jetty-all/pom.xml | 2 +- apache-jsp/pom.xml | 2 +- apache-jstl/pom.xml | 2 +- examples/async-rest/async-rest-jar/pom.xml | 2 +- examples/async-rest/async-rest-webapp/pom.xml | 2 +- examples/async-rest/pom.xml | 2 +- examples/embedded/pom.xml | 2 +- examples/pom.xml | 2 +- jetty-alpn/jetty-alpn-client/pom.xml | 2 +- .../jetty-alpn-conscrypt-client/pom.xml | 2 +- .../jetty-alpn-conscrypt-server/pom.xml | 2 +- jetty-alpn/jetty-alpn-java-client/pom.xml | 2 +- jetty-alpn/jetty-alpn-java-server/pom.xml | 2 +- jetty-alpn/jetty-alpn-openjdk8-client/pom.xml | 2 +- jetty-alpn/jetty-alpn-openjdk8-server/pom.xml | 2 +- jetty-alpn/jetty-alpn-server/pom.xml | 2 +- jetty-alpn/pom.xml | 2 +- jetty-annotations/pom.xml | 2 +- jetty-ant/pom.xml | 2 +- jetty-bom/pom.xml | 132 +++++++++--------- jetty-cdi/cdi-2/pom.xml | 2 +- jetty-cdi/cdi-core/pom.xml | 2 +- jetty-cdi/cdi-full-servlet/pom.xml | 2 +- jetty-cdi/cdi-servlet/pom.xml | 2 +- jetty-cdi/cdi-websocket/pom.xml | 2 +- jetty-cdi/pom.xml | 2 +- jetty-cdi/test-cdi-webapp/pom.xml | 2 +- jetty-client/pom.xml | 2 +- jetty-continuation/pom.xml | 2 +- jetty-deploy/pom.xml | 2 +- jetty-distribution/pom.xml | 2 +- jetty-documentation/pom.xml | 2 +- jetty-fcgi/fcgi-client/pom.xml | 2 +- jetty-fcgi/fcgi-server/pom.xml | 2 +- jetty-fcgi/pom.xml | 2 +- .../jetty-gcloud-session-manager/pom.xml | 2 +- jetty-gcloud/pom.xml | 2 +- jetty-hazelcast/pom.xml | 2 +- jetty-home/pom.xml | 2 +- jetty-http-spi/pom.xml | 2 +- jetty-http/pom.xml | 2 +- jetty-http2/http2-alpn-tests/pom.xml | 2 +- jetty-http2/http2-client/pom.xml | 2 +- jetty-http2/http2-common/pom.xml | 2 +- jetty-http2/http2-hpack/pom.xml | 2 +- .../http2-http-client-transport/pom.xml | 2 +- jetty-http2/http2-server/pom.xml | 2 +- jetty-http2/pom.xml | 2 +- jetty-infinispan/pom.xml | 2 +- jetty-io/pom.xml | 2 +- jetty-jaas/pom.xml | 2 +- jetty-jaspi/pom.xml | 2 +- jetty-jmh/pom.xml | 2 +- jetty-jmx/pom.xml | 2 +- jetty-jndi/pom.xml | 2 +- jetty-jspc-maven-plugin/pom.xml | 2 +- jetty-maven-plugin/pom.xml | 2 +- .../jetty-memcached-sessions/pom.xml | 2 +- jetty-memcached/pom.xml | 2 +- jetty-nosql/pom.xml | 2 +- jetty-osgi/jetty-osgi-alpn/pom.xml | 2 +- jetty-osgi/jetty-osgi-boot-jsp/pom.xml | 2 +- jetty-osgi/jetty-osgi-boot-warurl/pom.xml | 2 +- jetty-osgi/jetty-osgi-boot/pom.xml | 2 +- jetty-osgi/jetty-osgi-httpservice/pom.xml | 2 +- jetty-osgi/pom.xml | 2 +- jetty-osgi/test-jetty-osgi-context/pom.xml | 2 +- jetty-osgi/test-jetty-osgi-fragment/pom.xml | 2 +- jetty-osgi/test-jetty-osgi-server/pom.xml | 2 +- jetty-osgi/test-jetty-osgi-webapp/pom.xml | 2 +- jetty-osgi/test-jetty-osgi/pom.xml | 2 +- jetty-plus/pom.xml | 2 +- jetty-proxy/pom.xml | 2 +- jetty-quickstart/pom.xml | 2 +- jetty-rewrite/pom.xml | 2 +- jetty-runner/pom.xml | 2 +- jetty-security/pom.xml | 2 +- jetty-server/pom.xml | 2 +- jetty-servlet/pom.xml | 2 +- jetty-servlets/pom.xml | 2 +- jetty-spring/pom.xml | 2 +- jetty-start/pom.xml | 2 +- jetty-unixsocket/pom.xml | 2 +- jetty-util-ajax/pom.xml | 2 +- jetty-util/pom.xml | 2 +- jetty-webapp/pom.xml | 2 +- .../javax-websocket-client-impl/pom.xml | 2 +- .../javax-websocket-server-impl/pom.xml | 2 +- jetty-websocket/pom.xml | 2 +- jetty-websocket/websocket-api/pom.xml | 2 +- jetty-websocket/websocket-client/pom.xml | 2 +- jetty-websocket/websocket-common/pom.xml | 2 +- jetty-websocket/websocket-server/pom.xml | 2 +- jetty-websocket/websocket-servlet/pom.xml | 2 +- jetty-xml/pom.xml | 2 +- pom.xml | 2 +- tests/pom.xml | 2 +- tests/test-continuation/pom.xml | 2 +- tests/test-http-client-transport/pom.xml | 2 +- tests/test-integration/pom.xml | 2 +- tests/test-jmx/jmx-webapp-it/pom.xml | 2 +- tests/test-jmx/jmx-webapp/pom.xml | 2 +- tests/test-jmx/pom.xml | 2 +- tests/test-loginservice/pom.xml | 2 +- tests/test-quickstart/pom.xml | 2 +- tests/test-sessions/pom.xml | 2 +- .../test-sessions/test-file-sessions/pom.xml | 2 +- .../test-gcloud-sessions/pom.xml | 2 +- .../test-hazelcast-sessions/pom.xml | 2 +- .../test-infinispan-sessions/pom.xml | 2 +- .../test-sessions/test-jdbc-sessions/pom.xml | 2 +- .../test-memcached-sessions/pom.xml | 2 +- .../test-mongodb-sessions/pom.xml | 2 +- .../test-sessions-common/pom.xml | 2 +- tests/test-webapps/pom.xml | 2 +- tests/test-webapps/test-http2-webapp/pom.xml | 2 +- tests/test-webapps/test-jaas-webapp/pom.xml | 2 +- tests/test-webapps/test-jetty-webapp/pom.xml | 2 +- tests/test-webapps/test-jndi-webapp/pom.xml | 2 +- .../test-webapps/test-mock-resources/pom.xml | 2 +- tests/test-webapps/test-proxy-webapp/pom.xml | 2 +- tests/test-webapps/test-servlet-spec/pom.xml | 2 +- .../test-container-initializer/pom.xml | 2 +- .../test-spec-webapp/pom.xml | 2 +- .../test-web-fragment/pom.xml | 2 +- .../test-webapps/test-webapp-rfc2616/pom.xml | 2 +- 128 files changed, 288 insertions(+), 197 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index 4761f62007d..22d290a4f9c 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1,4 +1,94 @@ -jetty-9.4.12-SNAPSHOT +jetty-9.4.12.v20180830 - 30 August 2018 + + 300 Implement Deflater / Inflater Object Pool + + 307 Monitor contention in AbstractNCSARequestLog + + 321 Remove JaspiAuthenticatorFactory.findServerName(Server, Subject) + + 901 Overriding SSL context KeyStoreType requires explicit override of + TrustStoreType + + 1688 Request with `Content-Encoding: gzip` should not perform parameter + extraction + + 1905 Deprecate jetty-runner now, present warnings when using it on Java 9+ + Runtimes + + 2075 Deprecating MultiException + + 2135 Android 8.1 needs direct buffers for SSL/TLS to work + + 2233 JDK9 Test failure: + org.eclipse.jetty.server.ThreadStarvationTest.testWriteStarvation[https/ssl/tls] + + 2342 File Descriptor Leak: Conscrypt: "Too many open files" + + 2349 HTTP/2 max streams enforcement + + 2398 MultiPartFormInputStream parsing should default to UTF-8, but allowed + to be overridden by Request.setCharacterEncoding() + + 2468 EWYK concurrent produce can fail SSL connections + + 2501 Include accepting connections in connection limit. + + 2530 Client waits forever for cancelled large uploads + + 2560 Review PathResource exception handling + + 2565 HashLoginService silently ignores file:/ config paths from 9.3.x + + 2592 Failing test on Windows: + ServerTimeoutsTest.testAsyncWriteIdleTimeoutFires[transport: HTTP] + + 2597 Failing tests on windows UnixSocketTest + + 2631 IllegalArgumentException: Buffering capacity exceeded, from HttpClient + HEAD Requests to resources referencing large body contents + + 2648 LdapLoginModule fails with forceBinding=true under Java 9 + + 2655 WebSocketClient not removing closed WebSocket Session's from managed + beans + + 2662 Remove unnecessary boxing conversions + + 2663 Guard Throwable.addSuppressed() calls + + 2672 Max local stream count exceeded for HttpClient with HTTP/2 transport + + 2675 Demo rewrite rules prevent URL Session tracking + + 2677 Decode URI before matching against "/favicon.ico" + + 2679 HTTP/2 Spec Compliance + + 2681 Jetty Hot Deployment Module does not stop exploded webapps after + removal from webapps directory + + 2683 NPE in FrameFlusher toString() + + 2684 MimeTypes.getAssumedEncodings() does not work + + 2694 Bad DynamicImport-Package in Websocket Servlet + + 2696 GcloudDataStore dependency generation broken + + 2706 ResourceService may return 404 for unchanged content + + 2711 TLS 1.3 compliance + + 2717 Async requests are not considered when shutting down gracefully + + 2718 NPE using more than one Endpoint.publish + + 2719 property file passed to start.jar is not read + + 2720 config tag can't access property values in WebAppContext + + 2722 Improve configurability for SETTINGS frames + + 2730 Limit concurrent HTTP/2 pushed resources + + 2737 HTTP Authentication parameters containing = + + 2739 AuthenticationProtocolHandler Multiple Challenge Pattern + + 2745 JDBCSessionDataStore schema potential performance issue + + 2746 Move jmh classes to a dedicated module and run those daily or weekly + + 2749 Graceful shutdown causes repeated 503s on keep-alive connections + + 2754 Don't eagerly instantiate @WebListener during annotation scan if it is + explicitly referenced in the webapp descriptor as well + + 2755 Repeatedly stopping/starting an active HttpClient can result in a stuck + ManagedSelector + + 2757 Possible double release of HTTP/2 ByteBuffers + + 2762 Fix typo in jetty.sh + + 2767 WebSocket Policy on JSR356 ClientContainer not represented correctly + + 2775 Make LowResourceMonitor extendable + + 2777 Workaround for Conscrypt's ssl == null + + 2778 Upgrade h2spec-maven-plugin 0.4 + + 2787 BadMessageException wrapped as ServletException not handled + + 2794 Generate p2 repos for Jetty 9.3.24.v20180605 and Jetty 9.2.25.v20180606 + + 2796 Max local stream count exceeded when request fails + + 2798 ThreadPoolBudget logs WARN when minThreads == maxThreads (was: + Reasoning behind ThreadPoolBudget warning logic change on 3/5/18) + + 2807 Exclude TLS_RSA_* ciphers by default + + 2811 SslContextFactory.dump incorrectly uses default enabled for determining + "jre:disabled" flag + + 2817 Change HttpClient and WebSocketClient default to always have SSL + support enabled + + 2821 AuthenticationProtocolHandler should not always cache + Authentication.Result + + 2824 Every call to HttpServletRequest.getParameter*() methods results in a + newly created Map object if both query and body content exist + + 2828 connectionListener of AbstractHTTP2ServerConnectionFactory cause the + low performance of concurrent connect of http2 + + 2832 Wrong initialization of HTTP/2 UnknownBodyParser + + 2835 JarFileResource#lastModified() side effect is URL caching preventing + hot redeploy on Windows + + 2836 Sequential HTTPS requests may not reuse the same connection + + 2844 Clean up webdefault.xml and DefaultServlet doc + + 2846 add unit test for ldap module + + 2847 Wrap Connection.Listener invocations in try/catch + + 2860 Leakage of HttpDestinations in HttpClient + + 2871 Server reads -1 after client resets HTTP/2 stream jetty-9.4.11.v20180605 - 05 June 2018 + 1785 Support for vhost@connectorname syntax of virtual hosts @@ -471,8 +561,8 @@ jetty-9.4.5.v20170502 - 02 May 2017 jetty-9.3.20.v20170531 - 31 May 2017 + 523 TLS close behaviour breaking session resumption - + 1108 Improve logging in SslContextFactory when there are no approved - cipher suites + + 1108 Improve logging in SslContextFactory when there are no approved cipher + suites + 1527 Jetty BOM should not depend on jetty-parent + 1556 A timing channel in Password.java + 1567 XmlConfiguration will start the same object multiple times @@ -541,8 +631,9 @@ jetty-9.3.18.v20170406 - 06 April 2017 + 877 Programmatic servlet mappings cannot override mappings from webdefault.xml using quickstart + 1201 X-Forwarded-For incorrectly set in jetty-http-forwarded.xml - + 1316 Request.extract*Parameters() reports context - + 1322 Request.extract*Parameters() throws for bad UTF8 same as for bad ISO88591 + + 1316 Request.extract*Parameters() reports context + + 1322 Request.extract*Parameters() throws for bad UTF8 same as for bad + ISO88591 + 1326 Removed non-standard "%uXXXX" encoding support + 1417 Improve classloader dumping + 1439 Allow UNC paths to function as Resource bases diff --git a/aggregates/jetty-all-compact3/pom.xml b/aggregates/jetty-all-compact3/pom.xml index 704b56455d5..7465feb7c28 100644 --- a/aggregates/jetty-all-compact3/pom.xml +++ b/aggregates/jetty-all-compact3/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../../pom.xml 4.0.0 diff --git a/aggregates/jetty-all/pom.xml b/aggregates/jetty-all/pom.xml index c63c806e494..05679f18fb9 100644 --- a/aggregates/jetty-all/pom.xml +++ b/aggregates/jetty-all/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../../pom.xml 4.0.0 diff --git a/apache-jsp/pom.xml b/apache-jsp/pom.xml index dd19490f513..a1cc3c34afe 100644 --- a/apache-jsp/pom.xml +++ b/apache-jsp/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 apache-jsp diff --git a/apache-jstl/pom.xml b/apache-jstl/pom.xml index f015c531e55..17e1ba140b4 100644 --- a/apache-jstl/pom.xml +++ b/apache-jstl/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 apache-jstl diff --git a/examples/async-rest/async-rest-jar/pom.xml b/examples/async-rest/async-rest-jar/pom.xml index dacce0b244e..71e8ec0bb5d 100644 --- a/examples/async-rest/async-rest-jar/pom.xml +++ b/examples/async-rest/async-rest-jar/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty example-async-rest - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 org.eclipse.jetty.example-async-rest diff --git a/examples/async-rest/async-rest-webapp/pom.xml b/examples/async-rest/async-rest-webapp/pom.xml index 5114fed4896..7780240416d 100644 --- a/examples/async-rest/async-rest-webapp/pom.xml +++ b/examples/async-rest/async-rest-webapp/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty example-async-rest - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 org.eclipse.jetty.example-async-rest diff --git a/examples/async-rest/pom.xml b/examples/async-rest/pom.xml index 63b9a9c9732..7b028d7bade 100644 --- a/examples/async-rest/pom.xml +++ b/examples/async-rest/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.examples examples-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml 4.0.0 diff --git a/examples/embedded/pom.xml b/examples/embedded/pom.xml index 012fd7f3065..b06fee2e630 100644 --- a/examples/embedded/pom.xml +++ b/examples/embedded/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.examples examples-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml 4.0.0 diff --git a/examples/pom.xml b/examples/pom.xml index 291fe643a65..02a74beb81d 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml org.eclipse.jetty.examples diff --git a/jetty-alpn/jetty-alpn-client/pom.xml b/jetty-alpn/jetty-alpn-client/pom.xml index 2ef3825c6c7..cd79f98db80 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 a530acb27a7..6acd17a9247 100644 --- a/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml +++ b/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml @@ -6,7 +6,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml b/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml index a862b7c2917..6c1dd5f3957 100644 --- a/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml +++ b/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-alpn/jetty-alpn-java-client/pom.xml b/jetty-alpn/jetty-alpn-java-client/pom.xml index 51d0cd8bc73..59b4622a298 100644 --- a/jetty-alpn/jetty-alpn-java-client/pom.xml +++ b/jetty-alpn/jetty-alpn-java-client/pom.xml @@ -6,7 +6,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-alpn/jetty-alpn-java-server/pom.xml b/jetty-alpn/jetty-alpn-java-server/pom.xml index 7d5b9a6d7fd..f4ddceae55f 100644 --- a/jetty-alpn/jetty-alpn-java-server/pom.xml +++ b/jetty-alpn/jetty-alpn-java-server/pom.xml @@ -5,7 +5,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-alpn/jetty-alpn-openjdk8-client/pom.xml b/jetty-alpn/jetty-alpn-openjdk8-client/pom.xml index 6877a43b03b..748ee1f1d70 100644 --- a/jetty-alpn/jetty-alpn-openjdk8-client/pom.xml +++ b/jetty-alpn/jetty-alpn-openjdk8-client/pom.xml @@ -6,7 +6,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-alpn/jetty-alpn-openjdk8-server/pom.xml b/jetty-alpn/jetty-alpn-openjdk8-server/pom.xml index 46a1b824c67..842fa6035a2 100644 --- a/jetty-alpn/jetty-alpn-openjdk8-server/pom.xml +++ b/jetty-alpn/jetty-alpn-openjdk8-server/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-alpn/jetty-alpn-server/pom.xml b/jetty-alpn/jetty-alpn-server/pom.xml index fa2be60087d..b7c3e50cf56 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-alpn-server diff --git a/jetty-alpn/pom.xml b/jetty-alpn/pom.xml index a216bc62740..f3a9ae66da7 100644 --- a/jetty-alpn/pom.xml +++ b/jetty-alpn/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-alpn-parent diff --git a/jetty-annotations/pom.xml b/jetty-annotations/pom.xml index e5bd496ca5e..2700fda682f 100644 --- a/jetty-annotations/pom.xml +++ b/jetty-annotations/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-annotations diff --git a/jetty-ant/pom.xml b/jetty-ant/pom.xml index 3eca76c0e92..b0e670ed95e 100644 --- a/jetty-ant/pom.xml +++ b/jetty-ant/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-ant diff --git a/jetty-bom/pom.xml b/jetty-bom/pom.xml index 4968d651d42..807b3f27e37 100644 --- a/jetty-bom/pom.xml +++ b/jetty-bom/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty 4.0.0 jetty-bom - 9.4.12-SNAPSHOT + 9.4.12.v20180830 Jetty :: Bom Jetty BOM artifact http://www.eclipse.org/jetty @@ -94,331 +94,331 @@ org.eclipse.jetty apache-jsp - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty apache-jstl - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-alpn-client - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-alpn-java-client - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-alpn-java-server - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-alpn-openjdk8-client - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-alpn-openjdk8-server - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-alpn-conscrypt-client - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-alpn-conscrypt-server - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-alpn-server - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-annotations - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-ant - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.cdi cdi-core - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.cdi cdi-servlet - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-client - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-continuation - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-deploy - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-distribution - 9.4.12-SNAPSHOT + 9.4.12.v20180830 zip org.eclipse.jetty jetty-distribution - 9.4.12-SNAPSHOT + 9.4.12.v20180830 tar.gz org.eclipse.jetty.fcgi fcgi-client - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.fcgi fcgi-server - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.gcloud jetty-gcloud-session-manager - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-home - 9.4.12-SNAPSHOT + 9.4.12.v20180830 zip org.eclipse.jetty jetty-home - 9.4.12-SNAPSHOT + 9.4.12.v20180830 tar.gz org.eclipse.jetty jetty-http - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.http2 http2-client - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.http2 http2-common - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.http2 http2-hpack - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.http2 http2-http-client-transport - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.http2 http2-server - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-http-spi - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-infinispan - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-hazelcast - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-io - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-jaas - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-jaspi - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-jmx - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-jndi - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.memcached jetty-memcached-sessions - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-nosql - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.osgi jetty-osgi-boot - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.osgi jetty-osgi-boot-jsp - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.osgi jetty-osgi-boot-warurl - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.osgi jetty-httpservice - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-plus - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-proxy - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-quickstart - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-rewrite - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-security - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-server - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-servlet - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-servlets - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-spring - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-unixsocket - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-util - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-util-ajax - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-webapp - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.websocket javax-websocket-client-impl - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.websocket javax-websocket-server-impl - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.websocket websocket-api - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.websocket websocket-client - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.websocket websocket-common - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.websocket websocket-server - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty.websocket websocket-servlet - 9.4.12-SNAPSHOT + 9.4.12.v20180830 org.eclipse.jetty jetty-xml - 9.4.12-SNAPSHOT + 9.4.12.v20180830 diff --git a/jetty-cdi/cdi-2/pom.xml b/jetty-cdi/cdi-2/pom.xml index 4b839961091..7cb3e4bb501 100644 --- a/jetty-cdi/cdi-2/pom.xml +++ b/jetty-cdi/cdi-2/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 cdi-2 diff --git a/jetty-cdi/cdi-core/pom.xml b/jetty-cdi/cdi-core/pom.xml index 9d1149821bf..cbf96e8afcd 100644 --- a/jetty-cdi/cdi-core/pom.xml +++ b/jetty-cdi/cdi-core/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 cdi-core diff --git a/jetty-cdi/cdi-full-servlet/pom.xml b/jetty-cdi/cdi-full-servlet/pom.xml index af95fa04b30..82ddb2ca619 100644 --- a/jetty-cdi/cdi-full-servlet/pom.xml +++ b/jetty-cdi/cdi-full-servlet/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 cdi-full-servlet diff --git a/jetty-cdi/cdi-servlet/pom.xml b/jetty-cdi/cdi-servlet/pom.xml index 1c68f430d64..ff19fb77d92 100644 --- a/jetty-cdi/cdi-servlet/pom.xml +++ b/jetty-cdi/cdi-servlet/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 cdi-servlet diff --git a/jetty-cdi/cdi-websocket/pom.xml b/jetty-cdi/cdi-websocket/pom.xml index d6df8fa20b2..0b804cc3750 100644 --- a/jetty-cdi/cdi-websocket/pom.xml +++ b/jetty-cdi/cdi-websocket/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 cdi-websocket diff --git a/jetty-cdi/pom.xml b/jetty-cdi/pom.xml index 684bd800ff9..5c495d841d0 100644 --- a/jetty-cdi/pom.xml +++ b/jetty-cdi/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 org.eclipse.jetty.cdi diff --git a/jetty-cdi/test-cdi-webapp/pom.xml b/jetty-cdi/test-cdi-webapp/pom.xml index efbc19abac0..602db05eb2a 100644 --- a/jetty-cdi/test-cdi-webapp/pom.xml +++ b/jetty-cdi/test-cdi-webapp/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 test-cdi-webapp diff --git a/jetty-client/pom.xml b/jetty-client/pom.xml index 0ab1c8f3742..7627f94e035 100644 --- a/jetty-client/pom.xml +++ b/jetty-client/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-continuation/pom.xml b/jetty-continuation/pom.xml index 1bf2ee85797..82ad6ea4ef6 100644 --- a/jetty-continuation/pom.xml +++ b/jetty-continuation/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-continuation diff --git a/jetty-deploy/pom.xml b/jetty-deploy/pom.xml index 9297b6ff3fa..da7902c897d 100644 --- a/jetty-deploy/pom.xml +++ b/jetty-deploy/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-deploy diff --git a/jetty-distribution/pom.xml b/jetty-distribution/pom.xml index 5b5e93dc245..16476921463 100644 --- a/jetty-distribution/pom.xml +++ b/jetty-distribution/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-distribution diff --git a/jetty-documentation/pom.xml b/jetty-documentation/pom.xml index efd9f0ea1fe..3a3718686a5 100644 --- a/jetty-documentation/pom.xml +++ b/jetty-documentation/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 jetty-documentation Jetty :: Documentation diff --git a/jetty-fcgi/fcgi-client/pom.xml b/jetty-fcgi/fcgi-client/pom.xml index 2aa6ac22b9a..9a5de662505 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-fcgi/fcgi-server/pom.xml b/jetty-fcgi/fcgi-server/pom.xml index a050ea0b50f..0965118ba9e 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-fcgi/pom.xml b/jetty-fcgi/pom.xml index 37b1e9ac706..7cba5e4525f 100644 --- a/jetty-fcgi/pom.xml +++ b/jetty-fcgi/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-gcloud/jetty-gcloud-session-manager/pom.xml b/jetty-gcloud/jetty-gcloud-session-manager/pom.xml index bfdd0819bc6..b12734ca6fe 100644 --- a/jetty-gcloud/jetty-gcloud-session-manager/pom.xml +++ b/jetty-gcloud/jetty-gcloud-session-manager/pom.xml @@ -5,7 +5,7 @@ org.eclipse.jetty.gcloud gcloud-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-gcloud/pom.xml b/jetty-gcloud/pom.xml index 873b470bd9b..b08ad1ad0ab 100644 --- a/jetty-gcloud/pom.xml +++ b/jetty-gcloud/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-hazelcast/pom.xml b/jetty-hazelcast/pom.xml index 7ebf9a7d859..cb5668e1b34 100644 --- a/jetty-hazelcast/pom.xml +++ b/jetty-hazelcast/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-home/pom.xml b/jetty-home/pom.xml index 23a0dc46801..88f12b7b757 100644 --- a/jetty-home/pom.xml +++ b/jetty-home/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-home diff --git a/jetty-http-spi/pom.xml b/jetty-http-spi/pom.xml index eb6337021c5..7e6974fa9cc 100644 --- a/jetty-http-spi/pom.xml +++ b/jetty-http-spi/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-http-spi diff --git a/jetty-http/pom.xml b/jetty-http/pom.xml index 7831f8ac430..3fe42ec9314 100644 --- a/jetty-http/pom.xml +++ b/jetty-http/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-http diff --git a/jetty-http2/http2-alpn-tests/pom.xml b/jetty-http2/http2-alpn-tests/pom.xml index 507dc98db56..8299f2790e7 100644 --- a/jetty-http2/http2-alpn-tests/pom.xml +++ b/jetty-http2/http2-alpn-tests/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.http2 http2-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-http2/http2-client/pom.xml b/jetty-http2/http2-client/pom.xml index 6bb3aa45e50..cdee4579bc2 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-http2/http2-common/pom.xml b/jetty-http2/http2-common/pom.xml index 6a5d15f095d..5e342077651 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-http2/http2-hpack/pom.xml b/jetty-http2/http2-hpack/pom.xml index 1fa659dd8c3..2fcf94c033a 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-http2/http2-http-client-transport/pom.xml b/jetty-http2/http2-http-client-transport/pom.xml index 4b5959cc940..851bed3078a 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-http2/http2-server/pom.xml b/jetty-http2/http2-server/pom.xml index ec0a3cdefb5..a3f20781f28 100644 --- a/jetty-http2/http2-server/pom.xml +++ b/jetty-http2/http2-server/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.http2 http2-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-http2/pom.xml b/jetty-http2/pom.xml index 672e3b25f2f..90a8d96b413 100644 --- a/jetty-http2/pom.xml +++ b/jetty-http2/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-infinispan/pom.xml b/jetty-infinispan/pom.xml index d34cb21ae84..5f172362600 100644 --- a/jetty-infinispan/pom.xml +++ b/jetty-infinispan/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-infinispan diff --git a/jetty-io/pom.xml b/jetty-io/pom.xml index c9f288c1bc7..04beb03345b 100644 --- a/jetty-io/pom.xml +++ b/jetty-io/pom.xml @@ -2,7 +2,7 @@ jetty-project org.eclipse.jetty - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-io diff --git a/jetty-jaas/pom.xml b/jetty-jaas/pom.xml index 4d972910158..2e89e1a84e3 100644 --- a/jetty-jaas/pom.xml +++ b/jetty-jaas/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-jaas diff --git a/jetty-jaspi/pom.xml b/jetty-jaspi/pom.xml index d94ebe39dfd..c7e819362e2 100644 --- a/jetty-jaspi/pom.xml +++ b/jetty-jaspi/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-jmh/pom.xml b/jetty-jmh/pom.xml index 7a2686ef3a7..b628a50fde9 100644 --- a/jetty-jmh/pom.xml +++ b/jetty-jmh/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-jmh diff --git a/jetty-jmx/pom.xml b/jetty-jmx/pom.xml index d7077b5dba8..46e5a35e2bd 100644 --- a/jetty-jmx/pom.xml +++ b/jetty-jmx/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-jmx diff --git a/jetty-jndi/pom.xml b/jetty-jndi/pom.xml index 0081bbce22c..4ce032a546e 100644 --- a/jetty-jndi/pom.xml +++ b/jetty-jndi/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-jndi diff --git a/jetty-jspc-maven-plugin/pom.xml b/jetty-jspc-maven-plugin/pom.xml index 31c3326ed99..87bce0919fe 100644 --- a/jetty-jspc-maven-plugin/pom.xml +++ b/jetty-jspc-maven-plugin/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-jspc-maven-plugin diff --git a/jetty-maven-plugin/pom.xml b/jetty-maven-plugin/pom.xml index 8c5fb913633..90396a330cb 100644 --- a/jetty-maven-plugin/pom.xml +++ b/jetty-maven-plugin/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 df584b67a89..f66a5b1b318 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-memcached/pom.xml b/jetty-memcached/pom.xml index f5f7c63781b..0c7635e58e8 100644 --- a/jetty-memcached/pom.xml +++ b/jetty-memcached/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-nosql/pom.xml b/jetty-nosql/pom.xml index 9a3f505e5fb..a0d2fedf5c1 100644 --- a/jetty-nosql/pom.xml +++ b/jetty-nosql/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-nosql diff --git a/jetty-osgi/jetty-osgi-alpn/pom.xml b/jetty-osgi/jetty-osgi-alpn/pom.xml index eab7234f8a8..53a2a794b4f 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-osgi-alpn diff --git a/jetty-osgi/jetty-osgi-boot-jsp/pom.xml b/jetty-osgi/jetty-osgi-boot-jsp/pom.xml index 6ab686ae59f..a66c8c54329 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 86b498c03d2..d7cc7afc13a 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml 4.0.0 diff --git a/jetty-osgi/jetty-osgi-boot/pom.xml b/jetty-osgi/jetty-osgi-boot/pom.xml index bf75a83a225..53bd8c462f2 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 c334375bb10..be30a92df86 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-httpservice diff --git a/jetty-osgi/pom.xml b/jetty-osgi/pom.xml index a908e18db12..1d735a66456 100644 --- a/jetty-osgi/pom.xml +++ b/jetty-osgi/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-osgi/test-jetty-osgi-context/pom.xml b/jetty-osgi/test-jetty-osgi-context/pom.xml index 9cb7bb5485f..ca9c9a66ff9 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 5f3f7fa93f9..14d1e2d4004 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../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 eac4da3b69d..50a67acac5c 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 test-jetty-osgi-server diff --git a/jetty-osgi/test-jetty-osgi-webapp/pom.xml b/jetty-osgi/test-jetty-osgi-webapp/pom.xml index 6ad0a1d94d6..11b3c52a1a2 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml 4.0.0 diff --git a/jetty-osgi/test-jetty-osgi/pom.xml b/jetty-osgi/test-jetty-osgi/pom.xml index 2b640b5bf50..0ff711567b5 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml 4.0.0 diff --git a/jetty-plus/pom.xml b/jetty-plus/pom.xml index 3a9f693bb65..ee0e3c88797 100644 --- a/jetty-plus/pom.xml +++ b/jetty-plus/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-plus diff --git a/jetty-proxy/pom.xml b/jetty-proxy/pom.xml index e5f159dd0e8..d0cda2c6ea7 100644 --- a/jetty-proxy/pom.xml +++ b/jetty-proxy/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-proxy diff --git a/jetty-quickstart/pom.xml b/jetty-quickstart/pom.xml index 6614ccde14d..ecfa5fd53d4 100644 --- a/jetty-quickstart/pom.xml +++ b/jetty-quickstart/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 org.eclipse.jetty diff --git a/jetty-rewrite/pom.xml b/jetty-rewrite/pom.xml index 474265d5fe4..65eeaa0aea9 100644 --- a/jetty-rewrite/pom.xml +++ b/jetty-rewrite/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-rewrite diff --git a/jetty-runner/pom.xml b/jetty-runner/pom.xml index 645b829d7f5..cbcbb3b6fe4 100644 --- a/jetty-runner/pom.xml +++ b/jetty-runner/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-runner diff --git a/jetty-security/pom.xml b/jetty-security/pom.xml index ba05141d06b..9bff9e69804 100644 --- a/jetty-security/pom.xml +++ b/jetty-security/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-security diff --git a/jetty-server/pom.xml b/jetty-server/pom.xml index 8eb432cf04f..cbdc62a2189 100644 --- a/jetty-server/pom.xml +++ b/jetty-server/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-server diff --git a/jetty-servlet/pom.xml b/jetty-servlet/pom.xml index 84a3fac528e..b49a4c5e977 100644 --- a/jetty-servlet/pom.xml +++ b/jetty-servlet/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-servlet diff --git a/jetty-servlets/pom.xml b/jetty-servlets/pom.xml index 4a4ac0ead86..68aeaf3b2d6 100644 --- a/jetty-servlets/pom.xml +++ b/jetty-servlets/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-servlets diff --git a/jetty-spring/pom.xml b/jetty-spring/pom.xml index d108d35e6ac..e1c00717a05 100644 --- a/jetty-spring/pom.xml +++ b/jetty-spring/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-spring diff --git a/jetty-start/pom.xml b/jetty-start/pom.xml index 2109cc2b90e..a52a53a3b59 100644 --- a/jetty-start/pom.xml +++ b/jetty-start/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-start diff --git a/jetty-unixsocket/pom.xml b/jetty-unixsocket/pom.xml index b2a49b23af5..8d6913129d0 100644 --- a/jetty-unixsocket/pom.xml +++ b/jetty-unixsocket/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-unixsocket diff --git a/jetty-util-ajax/pom.xml b/jetty-util-ajax/pom.xml index a0e3980d11e..78ef452c2a1 100644 --- a/jetty-util-ajax/pom.xml +++ b/jetty-util-ajax/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-util-ajax diff --git a/jetty-util/pom.xml b/jetty-util/pom.xml index 1ad979120da..1c52e23065b 100644 --- a/jetty-util/pom.xml +++ b/jetty-util/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-util diff --git a/jetty-webapp/pom.xml b/jetty-webapp/pom.xml index 85910fa0847..d3f3741f6a9 100644 --- a/jetty-webapp/pom.xml +++ b/jetty-webapp/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-webapp diff --git a/jetty-websocket/javax-websocket-client-impl/pom.xml b/jetty-websocket/javax-websocket-client-impl/pom.xml index 25094632c0d..eb1d08bb2bd 100644 --- a/jetty-websocket/javax-websocket-client-impl/pom.xml +++ b/jetty-websocket/javax-websocket-client-impl/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-websocket/javax-websocket-server-impl/pom.xml b/jetty-websocket/javax-websocket-server-impl/pom.xml index 08d5fe6cdd2..3c2e9f52426 100644 --- a/jetty-websocket/javax-websocket-server-impl/pom.xml +++ b/jetty-websocket/javax-websocket-server-impl/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-websocket/pom.xml b/jetty-websocket/pom.xml index 1f2bfa9b81e..2ad5513f192 100644 --- a/jetty-websocket/pom.xml +++ b/jetty-websocket/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-websocket/websocket-api/pom.xml b/jetty-websocket/websocket-api/pom.xml index 5621bdcae01..7c5ded2b844 100644 --- a/jetty-websocket/websocket-api/pom.xml +++ b/jetty-websocket/websocket-api/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-websocket/websocket-client/pom.xml b/jetty-websocket/websocket-client/pom.xml index 13fb077823f..e819f2ee253 100644 --- a/jetty-websocket/websocket-client/pom.xml +++ b/jetty-websocket/websocket-client/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-websocket/websocket-common/pom.xml b/jetty-websocket/websocket-common/pom.xml index 7c7597fac55..ebea81f7a3e 100644 --- a/jetty-websocket/websocket-common/pom.xml +++ b/jetty-websocket/websocket-common/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-websocket/websocket-server/pom.xml b/jetty-websocket/websocket-server/pom.xml index f2f934d49dc..439a884694d 100644 --- a/jetty-websocket/websocket-server/pom.xml +++ b/jetty-websocket/websocket-server/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-websocket/websocket-servlet/pom.xml b/jetty-websocket/websocket-servlet/pom.xml index 66a9594c7fe..39744bfe249 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/jetty-xml/pom.xml b/jetty-xml/pom.xml index e3362d50b4a..960f9d207e4 100644 --- a/jetty-xml/pom.xml +++ b/jetty-xml/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 jetty-xml diff --git a/pom.xml b/pom.xml index e502eb04159..a0859569e2b 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 Jetty :: Project The Eclipse Jetty Project pom diff --git a/tests/pom.xml b/tests/pom.xml index 6aecfc67d79..fd584536f4d 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml org.eclipse.jetty.tests diff --git a/tests/test-continuation/pom.xml b/tests/test-continuation/pom.xml index 90183d49444..7e6a7fb4481 100644 --- a/tests/test-continuation/pom.xml +++ b/tests/test-continuation/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml 4.0.0 diff --git a/tests/test-http-client-transport/pom.xml b/tests/test-http-client-transport/pom.xml index afe8994be81..9775a39387f 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/tests/test-integration/pom.xml b/tests/test-integration/pom.xml index e987ab55752..8a62ce7793b 100644 --- a/tests/test-integration/pom.xml +++ b/tests/test-integration/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 eabfbcf3a6e..1582ba5986e 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 ef153219175..4eafd81f88d 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 jmx-webapp war diff --git a/tests/test-jmx/pom.xml b/tests/test-jmx/pom.xml index b2c4088fb0e..d8b600bc821 100644 --- a/tests/test-jmx/pom.xml +++ b/tests/test-jmx/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 test-jmx-parent diff --git a/tests/test-loginservice/pom.xml b/tests/test-loginservice/pom.xml index 4cca90bc486..b5f52be60e3 100644 --- a/tests/test-loginservice/pom.xml +++ b/tests/test-loginservice/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 test-loginservice Jetty Tests :: Login Service diff --git a/tests/test-quickstart/pom.xml b/tests/test-quickstart/pom.xml index e98b803ae7c..7aeddfd0de0 100644 --- a/tests/test-quickstart/pom.xml +++ b/tests/test-quickstart/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml 4.0.0 diff --git a/tests/test-sessions/pom.xml b/tests/test-sessions/pom.xml index a89e0653d94..65681d004c5 100644 --- a/tests/test-sessions/pom.xml +++ b/tests/test-sessions/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 af16a6701b6..7600a77df04 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 4ede94e1e3a..6afb88644ea 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 864ab20d244..44048655e29 100644 --- a/tests/test-sessions/test-hazelcast-sessions/pom.xml +++ b/tests/test-sessions/test-hazelcast-sessions/pom.xml @@ -5,7 +5,7 @@ org.eclipse.jetty.tests test-sessions-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 40f6833d4bd..3c0c671f6cf 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 97b458e7c38..d7e302d87c8 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 14132ba738a..9f26a5377b8 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 63b00f06939..2a91895bbb5 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 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 604187a979e..edb85c2f912 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 test-sessions-common Jetty Tests :: Sessions :: Common diff --git a/tests/test-webapps/pom.xml b/tests/test-webapps/pom.xml index f0d93893252..39b568f3a11 100644 --- a/tests/test-webapps/pom.xml +++ b/tests/test-webapps/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml test-webapps-parent diff --git a/tests/test-webapps/test-http2-webapp/pom.xml b/tests/test-webapps/test-http2-webapp/pom.xml index 3327c3f28f2..1bc9d191277 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 4.0.0 diff --git a/tests/test-webapps/test-jaas-webapp/pom.xml b/tests/test-webapps/test-jaas-webapp/pom.xml index fda384122ba..e8bd83ca3e9 100644 --- a/tests/test-webapps/test-jaas-webapp/pom.xml +++ b/tests/test-webapps/test-jaas-webapp/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 test-jaas-webapp Jetty Tests :: WebApp :: JAAS diff --git a/tests/test-webapps/test-jetty-webapp/pom.xml b/tests/test-webapps/test-jetty-webapp/pom.xml index 059b85e2e3c..cffaa108977 100644 --- a/tests/test-webapps/test-jetty-webapp/pom.xml +++ b/tests/test-webapps/test-jetty-webapp/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml 4.0.0 diff --git a/tests/test-webapps/test-jndi-webapp/pom.xml b/tests/test-webapps/test-jndi-webapp/pom.xml index e30e06c746e..d6737c51b7e 100644 --- a/tests/test-webapps/test-jndi-webapp/pom.xml +++ b/tests/test-webapps/test-jndi-webapp/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 test-jndi-webapp Jetty Tests :: WebApp :: JNDI diff --git a/tests/test-webapps/test-mock-resources/pom.xml b/tests/test-webapps/test-mock-resources/pom.xml index 3d78ab3be2c..e7451a727e5 100644 --- a/tests/test-webapps/test-mock-resources/pom.xml +++ b/tests/test-webapps/test-mock-resources/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 Jetty Tests :: WebApp :: Mock Resources test-mock-resources diff --git a/tests/test-webapps/test-proxy-webapp/pom.xml b/tests/test-webapps/test-proxy-webapp/pom.xml index 613d2d2c936..0922e1b8641 100644 --- a/tests/test-webapps/test-proxy-webapp/pom.xml +++ b/tests/test-webapps/test-proxy-webapp/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 ../pom.xml 4.0.0 diff --git a/tests/test-webapps/test-servlet-spec/pom.xml b/tests/test-webapps/test-servlet-spec/pom.xml index 47c61c9f030..c2598ffc15a 100644 --- a/tests/test-webapps/test-servlet-spec/pom.xml +++ b/tests/test-webapps/test-servlet-spec/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 test-servlet-spec-parent Jetty Tests :: Spec Test WebApp :: Parent diff --git a/tests/test-webapps/test-servlet-spec/test-container-initializer/pom.xml b/tests/test-webapps/test-servlet-spec/test-container-initializer/pom.xml index 467f972c1bf..0ecaf90d7e3 100644 --- a/tests/test-webapps/test-servlet-spec/test-container-initializer/pom.xml +++ b/tests/test-webapps/test-servlet-spec/test-container-initializer/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-servlet-spec-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 test-container-initializer jar diff --git a/tests/test-webapps/test-servlet-spec/test-spec-webapp/pom.xml b/tests/test-webapps/test-servlet-spec/test-spec-webapp/pom.xml index 6f92acc72fe..1e76fdea031 100644 --- a/tests/test-webapps/test-servlet-spec/test-spec-webapp/pom.xml +++ b/tests/test-webapps/test-servlet-spec/test-spec-webapp/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests test-servlet-spec-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 Jetty Tests :: Webapps :: Spec Webapp test-spec-webapp diff --git a/tests/test-webapps/test-servlet-spec/test-web-fragment/pom.xml b/tests/test-webapps/test-servlet-spec/test-web-fragment/pom.xml index d0057091d15..589d23b47f1 100644 --- a/tests/test-webapps/test-servlet-spec/test-web-fragment/pom.xml +++ b/tests/test-webapps/test-servlet-spec/test-web-fragment/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-servlet-spec-parent - 9.4.12-SNAPSHOT + 9.4.12.v20180830 Jetty Tests :: WebApp :: Servlet Spec :: Fragment Jar diff --git a/tests/test-webapps/test-webapp-rfc2616/pom.xml b/tests/test-webapps/test-webapp-rfc2616/pom.xml index 714af56e03c..bfb539138a3 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 - 9.4.12-SNAPSHOT + 9.4.12.v20180830 test-webapp-rfc2616 Jetty Tests :: WebApp :: RFC2616 From dcf6a8fa9f73345f720ac86db12b835ce10fef13 Mon Sep 17 00:00:00 2001 From: Jesse McConnell Date: Thu, 30 Aug 2018 10:48:22 -0500 Subject: [PATCH 05/12] Updating to version 9.4.13-SNAPSHOT --- VERSION.txt | 2 + aggregates/jetty-all-compact3/pom.xml | 2 +- aggregates/jetty-all/pom.xml | 2 +- apache-jsp/pom.xml | 2 +- apache-jstl/pom.xml | 2 +- examples/async-rest/async-rest-jar/pom.xml | 2 +- examples/async-rest/async-rest-webapp/pom.xml | 2 +- examples/async-rest/pom.xml | 2 +- examples/embedded/pom.xml | 2 +- examples/pom.xml | 2 +- jetty-alpn/jetty-alpn-client/pom.xml | 2 +- .../jetty-alpn-conscrypt-client/pom.xml | 2 +- .../jetty-alpn-conscrypt-server/pom.xml | 2 +- jetty-alpn/jetty-alpn-java-client/pom.xml | 2 +- jetty-alpn/jetty-alpn-java-server/pom.xml | 2 +- jetty-alpn/jetty-alpn-openjdk8-client/pom.xml | 2 +- jetty-alpn/jetty-alpn-openjdk8-server/pom.xml | 2 +- jetty-alpn/jetty-alpn-server/pom.xml | 2 +- jetty-alpn/pom.xml | 2 +- jetty-annotations/pom.xml | 2 +- jetty-ant/pom.xml | 2 +- jetty-bom/pom.xml | 130 +++++++++--------- jetty-cdi/cdi-2/pom.xml | 2 +- jetty-cdi/cdi-core/pom.xml | 2 +- jetty-cdi/cdi-full-servlet/pom.xml | 2 +- jetty-cdi/cdi-servlet/pom.xml | 2 +- jetty-cdi/cdi-websocket/pom.xml | 2 +- jetty-cdi/pom.xml | 2 +- jetty-cdi/test-cdi-webapp/pom.xml | 2 +- jetty-client/pom.xml | 2 +- jetty-continuation/pom.xml | 2 +- jetty-deploy/pom.xml | 2 +- jetty-distribution/pom.xml | 2 +- jetty-documentation/pom.xml | 2 +- jetty-fcgi/fcgi-client/pom.xml | 2 +- jetty-fcgi/fcgi-server/pom.xml | 2 +- jetty-fcgi/pom.xml | 2 +- .../jetty-gcloud-session-manager/pom.xml | 2 +- jetty-gcloud/pom.xml | 2 +- jetty-hazelcast/pom.xml | 2 +- jetty-home/pom.xml | 2 +- jetty-http-spi/pom.xml | 2 +- jetty-http/pom.xml | 2 +- jetty-http2/http2-alpn-tests/pom.xml | 2 +- jetty-http2/http2-client/pom.xml | 2 +- jetty-http2/http2-common/pom.xml | 2 +- jetty-http2/http2-hpack/pom.xml | 2 +- .../http2-http-client-transport/pom.xml | 2 +- jetty-http2/http2-server/pom.xml | 2 +- jetty-http2/pom.xml | 2 +- jetty-infinispan/pom.xml | 2 +- jetty-io/pom.xml | 2 +- jetty-jaas/pom.xml | 2 +- jetty-jaspi/pom.xml | 2 +- jetty-jmh/pom.xml | 2 +- jetty-jmx/pom.xml | 2 +- jetty-jndi/pom.xml | 2 +- jetty-jspc-maven-plugin/pom.xml | 2 +- jetty-maven-plugin/pom.xml | 2 +- .../jetty-memcached-sessions/pom.xml | 2 +- jetty-memcached/pom.xml | 2 +- jetty-nosql/pom.xml | 2 +- jetty-osgi/jetty-osgi-alpn/pom.xml | 2 +- jetty-osgi/jetty-osgi-boot-jsp/pom.xml | 2 +- jetty-osgi/jetty-osgi-boot-warurl/pom.xml | 2 +- jetty-osgi/jetty-osgi-boot/pom.xml | 2 +- jetty-osgi/jetty-osgi-httpservice/pom.xml | 2 +- jetty-osgi/pom.xml | 2 +- jetty-osgi/test-jetty-osgi-context/pom.xml | 2 +- jetty-osgi/test-jetty-osgi-fragment/pom.xml | 2 +- jetty-osgi/test-jetty-osgi-server/pom.xml | 2 +- jetty-osgi/test-jetty-osgi-webapp/pom.xml | 2 +- jetty-osgi/test-jetty-osgi/pom.xml | 2 +- jetty-plus/pom.xml | 2 +- jetty-proxy/pom.xml | 2 +- jetty-quickstart/pom.xml | 2 +- jetty-rewrite/pom.xml | 2 +- jetty-runner/pom.xml | 2 +- jetty-security/pom.xml | 2 +- jetty-server/pom.xml | 2 +- jetty-servlet/pom.xml | 2 +- jetty-servlets/pom.xml | 2 +- jetty-spring/pom.xml | 2 +- jetty-start/pom.xml | 2 +- jetty-unixsocket/pom.xml | 2 +- jetty-util-ajax/pom.xml | 2 +- jetty-util/pom.xml | 2 +- jetty-webapp/pom.xml | 2 +- .../javax-websocket-client-impl/pom.xml | 2 +- .../javax-websocket-server-impl/pom.xml | 2 +- jetty-websocket/pom.xml | 2 +- jetty-websocket/websocket-api/pom.xml | 2 +- jetty-websocket/websocket-client/pom.xml | 2 +- jetty-websocket/websocket-common/pom.xml | 2 +- jetty-websocket/websocket-server/pom.xml | 2 +- jetty-websocket/websocket-servlet/pom.xml | 2 +- jetty-xml/pom.xml | 2 +- pom.xml | 2 +- tests/pom.xml | 2 +- tests/test-continuation/pom.xml | 2 +- tests/test-http-client-transport/pom.xml | 2 +- tests/test-integration/pom.xml | 2 +- tests/test-jmx/jmx-webapp-it/pom.xml | 2 +- tests/test-jmx/jmx-webapp/pom.xml | 2 +- tests/test-jmx/pom.xml | 2 +- tests/test-loginservice/pom.xml | 2 +- tests/test-quickstart/pom.xml | 2 +- tests/test-sessions/pom.xml | 2 +- .../test-sessions/test-file-sessions/pom.xml | 2 +- .../test-gcloud-sessions/pom.xml | 2 +- .../test-hazelcast-sessions/pom.xml | 2 +- .../test-infinispan-sessions/pom.xml | 2 +- .../test-sessions/test-jdbc-sessions/pom.xml | 2 +- .../test-memcached-sessions/pom.xml | 2 +- .../test-mongodb-sessions/pom.xml | 2 +- .../test-sessions-common/pom.xml | 2 +- tests/test-webapps/pom.xml | 2 +- tests/test-webapps/test-http2-webapp/pom.xml | 2 +- tests/test-webapps/test-jaas-webapp/pom.xml | 2 +- tests/test-webapps/test-jetty-webapp/pom.xml | 2 +- tests/test-webapps/test-jndi-webapp/pom.xml | 2 +- .../test-webapps/test-mock-resources/pom.xml | 2 +- tests/test-webapps/test-proxy-webapp/pom.xml | 2 +- tests/test-webapps/test-servlet-spec/pom.xml | 2 +- .../test-container-initializer/pom.xml | 2 +- .../test-spec-webapp/pom.xml | 2 +- .../test-web-fragment/pom.xml | 2 +- .../test-webapps/test-webapp-rfc2616/pom.xml | 2 +- 128 files changed, 193 insertions(+), 191 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index 22d290a4f9c..af0ebcd5715 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1,3 +1,5 @@ +jetty-9.4.13-SNAPSHOT + jetty-9.4.12.v20180830 - 30 August 2018 + 300 Implement Deflater / Inflater Object Pool + 307 Monitor contention in AbstractNCSARequestLog diff --git a/aggregates/jetty-all-compact3/pom.xml b/aggregates/jetty-all-compact3/pom.xml index 7465feb7c28..95b387a6bb7 100644 --- a/aggregates/jetty-all-compact3/pom.xml +++ b/aggregates/jetty-all-compact3/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/aggregates/jetty-all/pom.xml b/aggregates/jetty-all/pom.xml index 05679f18fb9..da9e5fc672c 100644 --- a/aggregates/jetty-all/pom.xml +++ b/aggregates/jetty-all/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/apache-jsp/pom.xml b/apache-jsp/pom.xml index a1cc3c34afe..4296422c939 100644 --- a/apache-jsp/pom.xml +++ b/apache-jsp/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 apache-jsp diff --git a/apache-jstl/pom.xml b/apache-jstl/pom.xml index 17e1ba140b4..e4f60b67e04 100644 --- a/apache-jstl/pom.xml +++ b/apache-jstl/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 apache-jstl diff --git a/examples/async-rest/async-rest-jar/pom.xml b/examples/async-rest/async-rest-jar/pom.xml index 71e8ec0bb5d..628518e0a7b 100644 --- a/examples/async-rest/async-rest-jar/pom.xml +++ b/examples/async-rest/async-rest-jar/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty example-async-rest - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 org.eclipse.jetty.example-async-rest diff --git a/examples/async-rest/async-rest-webapp/pom.xml b/examples/async-rest/async-rest-webapp/pom.xml index 7780240416d..382e262a0fa 100644 --- a/examples/async-rest/async-rest-webapp/pom.xml +++ b/examples/async-rest/async-rest-webapp/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty example-async-rest - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 org.eclipse.jetty.example-async-rest diff --git a/examples/async-rest/pom.xml b/examples/async-rest/pom.xml index 7b028d7bade..a651837e37e 100644 --- a/examples/async-rest/pom.xml +++ b/examples/async-rest/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.examples examples-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml 4.0.0 diff --git a/examples/embedded/pom.xml b/examples/embedded/pom.xml index b06fee2e630..7280aaf5dac 100644 --- a/examples/embedded/pom.xml +++ b/examples/embedded/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.examples examples-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml 4.0.0 diff --git a/examples/pom.xml b/examples/pom.xml index 02a74beb81d..22b9af3d71d 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml org.eclipse.jetty.examples diff --git a/jetty-alpn/jetty-alpn-client/pom.xml b/jetty-alpn/jetty-alpn-client/pom.xml index cd79f98db80..5291c116447 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 6acd17a9247..2e63806ca5b 100644 --- a/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml +++ b/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml @@ -6,7 +6,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml b/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml index 6c1dd5f3957..a4cb0e784fb 100644 --- a/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml +++ b/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-alpn/jetty-alpn-java-client/pom.xml b/jetty-alpn/jetty-alpn-java-client/pom.xml index 59b4622a298..f013d1dba03 100644 --- a/jetty-alpn/jetty-alpn-java-client/pom.xml +++ b/jetty-alpn/jetty-alpn-java-client/pom.xml @@ -6,7 +6,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-alpn/jetty-alpn-java-server/pom.xml b/jetty-alpn/jetty-alpn-java-server/pom.xml index f4ddceae55f..beb0c456209 100644 --- a/jetty-alpn/jetty-alpn-java-server/pom.xml +++ b/jetty-alpn/jetty-alpn-java-server/pom.xml @@ -5,7 +5,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-alpn/jetty-alpn-openjdk8-client/pom.xml b/jetty-alpn/jetty-alpn-openjdk8-client/pom.xml index 748ee1f1d70..e6ae3c210b1 100644 --- a/jetty-alpn/jetty-alpn-openjdk8-client/pom.xml +++ b/jetty-alpn/jetty-alpn-openjdk8-client/pom.xml @@ -6,7 +6,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-alpn/jetty-alpn-openjdk8-server/pom.xml b/jetty-alpn/jetty-alpn-openjdk8-server/pom.xml index 842fa6035a2..934dce46afd 100644 --- a/jetty-alpn/jetty-alpn-openjdk8-server/pom.xml +++ b/jetty-alpn/jetty-alpn-openjdk8-server/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-alpn-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-alpn/jetty-alpn-server/pom.xml b/jetty-alpn/jetty-alpn-server/pom.xml index b7c3e50cf56..2080647cf95 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-alpn-server diff --git a/jetty-alpn/pom.xml b/jetty-alpn/pom.xml index f3a9ae66da7..9d36b6fb05b 100644 --- a/jetty-alpn/pom.xml +++ b/jetty-alpn/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-alpn-parent diff --git a/jetty-annotations/pom.xml b/jetty-annotations/pom.xml index 2700fda682f..52080ae0f58 100644 --- a/jetty-annotations/pom.xml +++ b/jetty-annotations/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-annotations diff --git a/jetty-ant/pom.xml b/jetty-ant/pom.xml index b0e670ed95e..fd54142b183 100644 --- a/jetty-ant/pom.xml +++ b/jetty-ant/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-ant diff --git a/jetty-bom/pom.xml b/jetty-bom/pom.xml index 807b3f27e37..b6337cba5f1 100644 --- a/jetty-bom/pom.xml +++ b/jetty-bom/pom.xml @@ -94,331 +94,331 @@ org.eclipse.jetty apache-jsp - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty apache-jstl - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-alpn-client - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-alpn-java-client - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-alpn-java-server - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-alpn-openjdk8-client - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-alpn-openjdk8-server - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-alpn-conscrypt-client - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-alpn-conscrypt-server - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-alpn-server - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-annotations - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-ant - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.cdi cdi-core - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.cdi cdi-servlet - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-client - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-continuation - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-deploy - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-distribution - 9.4.12.v20180830 + 9.4.13-SNAPSHOT zip org.eclipse.jetty jetty-distribution - 9.4.12.v20180830 + 9.4.13-SNAPSHOT tar.gz org.eclipse.jetty.fcgi fcgi-client - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.fcgi fcgi-server - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.gcloud jetty-gcloud-session-manager - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-home - 9.4.12.v20180830 + 9.4.13-SNAPSHOT zip org.eclipse.jetty jetty-home - 9.4.12.v20180830 + 9.4.13-SNAPSHOT tar.gz org.eclipse.jetty jetty-http - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.http2 http2-client - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.http2 http2-common - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.http2 http2-hpack - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.http2 http2-http-client-transport - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.http2 http2-server - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-http-spi - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-infinispan - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-hazelcast - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-io - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-jaas - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-jaspi - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-jmx - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-jndi - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.memcached jetty-memcached-sessions - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-nosql - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.osgi jetty-osgi-boot - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.osgi jetty-osgi-boot-jsp - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.osgi jetty-osgi-boot-warurl - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.osgi jetty-httpservice - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-plus - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-proxy - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-quickstart - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-rewrite - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-security - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-server - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-servlet - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-servlets - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-spring - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-unixsocket - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-util - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-util-ajax - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-webapp - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.websocket javax-websocket-client-impl - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.websocket javax-websocket-server-impl - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.websocket websocket-api - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.websocket websocket-client - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.websocket websocket-common - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.websocket websocket-server - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty.websocket websocket-servlet - 9.4.12.v20180830 + 9.4.13-SNAPSHOT org.eclipse.jetty jetty-xml - 9.4.12.v20180830 + 9.4.13-SNAPSHOT diff --git a/jetty-cdi/cdi-2/pom.xml b/jetty-cdi/cdi-2/pom.xml index 7cb3e4bb501..1cbad1f9b17 100644 --- a/jetty-cdi/cdi-2/pom.xml +++ b/jetty-cdi/cdi-2/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 cdi-2 diff --git a/jetty-cdi/cdi-core/pom.xml b/jetty-cdi/cdi-core/pom.xml index cbf96e8afcd..98b5008ea99 100644 --- a/jetty-cdi/cdi-core/pom.xml +++ b/jetty-cdi/cdi-core/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 cdi-core diff --git a/jetty-cdi/cdi-full-servlet/pom.xml b/jetty-cdi/cdi-full-servlet/pom.xml index 82ddb2ca619..171a458c1b0 100644 --- a/jetty-cdi/cdi-full-servlet/pom.xml +++ b/jetty-cdi/cdi-full-servlet/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 cdi-full-servlet diff --git a/jetty-cdi/cdi-servlet/pom.xml b/jetty-cdi/cdi-servlet/pom.xml index ff19fb77d92..1a461d6b5bf 100644 --- a/jetty-cdi/cdi-servlet/pom.xml +++ b/jetty-cdi/cdi-servlet/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 cdi-servlet diff --git a/jetty-cdi/cdi-websocket/pom.xml b/jetty-cdi/cdi-websocket/pom.xml index 0b804cc3750..4f1248f7279 100644 --- a/jetty-cdi/cdi-websocket/pom.xml +++ b/jetty-cdi/cdi-websocket/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 cdi-websocket diff --git a/jetty-cdi/pom.xml b/jetty-cdi/pom.xml index 5c495d841d0..0198776bb30 100644 --- a/jetty-cdi/pom.xml +++ b/jetty-cdi/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 org.eclipse.jetty.cdi diff --git a/jetty-cdi/test-cdi-webapp/pom.xml b/jetty-cdi/test-cdi-webapp/pom.xml index 602db05eb2a..8c4b0aabc35 100644 --- a/jetty-cdi/test-cdi-webapp/pom.xml +++ b/jetty-cdi/test-cdi-webapp/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.cdi jetty-cdi-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 test-cdi-webapp diff --git a/jetty-client/pom.xml b/jetty-client/pom.xml index 7627f94e035..a9955c6cab8 100644 --- a/jetty-client/pom.xml +++ b/jetty-client/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-continuation/pom.xml b/jetty-continuation/pom.xml index 82ad6ea4ef6..05bb24b9448 100644 --- a/jetty-continuation/pom.xml +++ b/jetty-continuation/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-continuation diff --git a/jetty-deploy/pom.xml b/jetty-deploy/pom.xml index da7902c897d..494743c4d96 100644 --- a/jetty-deploy/pom.xml +++ b/jetty-deploy/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-deploy diff --git a/jetty-distribution/pom.xml b/jetty-distribution/pom.xml index 16476921463..b1623f2f19b 100644 --- a/jetty-distribution/pom.xml +++ b/jetty-distribution/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-distribution diff --git a/jetty-documentation/pom.xml b/jetty-documentation/pom.xml index 3a3718686a5..c0d5a837f41 100644 --- a/jetty-documentation/pom.xml +++ b/jetty-documentation/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT jetty-documentation Jetty :: Documentation diff --git a/jetty-fcgi/fcgi-client/pom.xml b/jetty-fcgi/fcgi-client/pom.xml index 9a5de662505..3fef8abe2ed 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-fcgi/fcgi-server/pom.xml b/jetty-fcgi/fcgi-server/pom.xml index 0965118ba9e..3d065b8a36d 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-fcgi/pom.xml b/jetty-fcgi/pom.xml index 7cba5e4525f..c8bcc7ffb5a 100644 --- a/jetty-fcgi/pom.xml +++ b/jetty-fcgi/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-gcloud/jetty-gcloud-session-manager/pom.xml b/jetty-gcloud/jetty-gcloud-session-manager/pom.xml index b12734ca6fe..66c7a9f6430 100644 --- a/jetty-gcloud/jetty-gcloud-session-manager/pom.xml +++ b/jetty-gcloud/jetty-gcloud-session-manager/pom.xml @@ -5,7 +5,7 @@ org.eclipse.jetty.gcloud gcloud-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-gcloud/pom.xml b/jetty-gcloud/pom.xml index b08ad1ad0ab..c0d7c073302 100644 --- a/jetty-gcloud/pom.xml +++ b/jetty-gcloud/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-hazelcast/pom.xml b/jetty-hazelcast/pom.xml index cb5668e1b34..ce9f253094d 100644 --- a/jetty-hazelcast/pom.xml +++ b/jetty-hazelcast/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-home/pom.xml b/jetty-home/pom.xml index 88f12b7b757..c00b7b4bb6a 100644 --- a/jetty-home/pom.xml +++ b/jetty-home/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-home diff --git a/jetty-http-spi/pom.xml b/jetty-http-spi/pom.xml index 7e6974fa9cc..5070cb4560a 100644 --- a/jetty-http-spi/pom.xml +++ b/jetty-http-spi/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-http-spi diff --git a/jetty-http/pom.xml b/jetty-http/pom.xml index 3fe42ec9314..af67747e28d 100644 --- a/jetty-http/pom.xml +++ b/jetty-http/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-http diff --git a/jetty-http2/http2-alpn-tests/pom.xml b/jetty-http2/http2-alpn-tests/pom.xml index 8299f2790e7..6eff280901f 100644 --- a/jetty-http2/http2-alpn-tests/pom.xml +++ b/jetty-http2/http2-alpn-tests/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.http2 http2-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-http2/http2-client/pom.xml b/jetty-http2/http2-client/pom.xml index cdee4579bc2..5d2bd3a3d3d 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-http2/http2-common/pom.xml b/jetty-http2/http2-common/pom.xml index 5e342077651..d9bcdda6058 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-http2/http2-hpack/pom.xml b/jetty-http2/http2-hpack/pom.xml index 2fcf94c033a..3cd0f6a88b6 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-http2/http2-http-client-transport/pom.xml b/jetty-http2/http2-http-client-transport/pom.xml index 851bed3078a..b25a8a679d1 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-http2/http2-server/pom.xml b/jetty-http2/http2-server/pom.xml index a3f20781f28..64dcaa4f2f1 100644 --- a/jetty-http2/http2-server/pom.xml +++ b/jetty-http2/http2-server/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.http2 http2-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-http2/pom.xml b/jetty-http2/pom.xml index 90a8d96b413..1c711777008 100644 --- a/jetty-http2/pom.xml +++ b/jetty-http2/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-infinispan/pom.xml b/jetty-infinispan/pom.xml index 5f172362600..6ad0e56f451 100644 --- a/jetty-infinispan/pom.xml +++ b/jetty-infinispan/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-infinispan diff --git a/jetty-io/pom.xml b/jetty-io/pom.xml index 04beb03345b..88a36122609 100644 --- a/jetty-io/pom.xml +++ b/jetty-io/pom.xml @@ -2,7 +2,7 @@ jetty-project org.eclipse.jetty - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-io diff --git a/jetty-jaas/pom.xml b/jetty-jaas/pom.xml index 2e89e1a84e3..3db46da6f25 100644 --- a/jetty-jaas/pom.xml +++ b/jetty-jaas/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-jaas diff --git a/jetty-jaspi/pom.xml b/jetty-jaspi/pom.xml index c7e819362e2..c536a7709d6 100644 --- a/jetty-jaspi/pom.xml +++ b/jetty-jaspi/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-jmh/pom.xml b/jetty-jmh/pom.xml index b628a50fde9..2e4b9719221 100644 --- a/jetty-jmh/pom.xml +++ b/jetty-jmh/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-jmh diff --git a/jetty-jmx/pom.xml b/jetty-jmx/pom.xml index 46e5a35e2bd..f7722c06714 100644 --- a/jetty-jmx/pom.xml +++ b/jetty-jmx/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-jmx diff --git a/jetty-jndi/pom.xml b/jetty-jndi/pom.xml index 4ce032a546e..4e6d764aa8a 100644 --- a/jetty-jndi/pom.xml +++ b/jetty-jndi/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-jndi diff --git a/jetty-jspc-maven-plugin/pom.xml b/jetty-jspc-maven-plugin/pom.xml index 87bce0919fe..e575ab90981 100644 --- a/jetty-jspc-maven-plugin/pom.xml +++ b/jetty-jspc-maven-plugin/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-jspc-maven-plugin diff --git a/jetty-maven-plugin/pom.xml b/jetty-maven-plugin/pom.xml index 90396a330cb..021953379d3 100644 --- a/jetty-maven-plugin/pom.xml +++ b/jetty-maven-plugin/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 f66a5b1b318..fe4b89009f4 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-memcached/pom.xml b/jetty-memcached/pom.xml index 0c7635e58e8..203343bfd97 100644 --- a/jetty-memcached/pom.xml +++ b/jetty-memcached/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-nosql/pom.xml b/jetty-nosql/pom.xml index a0d2fedf5c1..ed0000fcbde 100644 --- a/jetty-nosql/pom.xml +++ b/jetty-nosql/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-nosql diff --git a/jetty-osgi/jetty-osgi-alpn/pom.xml b/jetty-osgi/jetty-osgi-alpn/pom.xml index 53a2a794b4f..1fe2b2000b5 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-osgi-alpn diff --git a/jetty-osgi/jetty-osgi-boot-jsp/pom.xml b/jetty-osgi/jetty-osgi-boot-jsp/pom.xml index a66c8c54329..eb424f2d69d 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 d7cc7afc13a..3421edc642b 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml 4.0.0 diff --git a/jetty-osgi/jetty-osgi-boot/pom.xml b/jetty-osgi/jetty-osgi-boot/pom.xml index 53bd8c462f2..18457863a7c 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 be30a92df86..332d259616c 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-httpservice diff --git a/jetty-osgi/pom.xml b/jetty-osgi/pom.xml index 1d735a66456..090cc250a42 100644 --- a/jetty-osgi/pom.xml +++ b/jetty-osgi/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-osgi/test-jetty-osgi-context/pom.xml b/jetty-osgi/test-jetty-osgi-context/pom.xml index ca9c9a66ff9..69146e5f38a 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 14d1e2d4004..19e44564f78 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../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 50a67acac5c..57f376a32a1 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 test-jetty-osgi-server diff --git a/jetty-osgi/test-jetty-osgi-webapp/pom.xml b/jetty-osgi/test-jetty-osgi-webapp/pom.xml index 11b3c52a1a2..8eb88115390 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml 4.0.0 diff --git a/jetty-osgi/test-jetty-osgi/pom.xml b/jetty-osgi/test-jetty-osgi/pom.xml index 0ff711567b5..f7efe0e8d6e 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml 4.0.0 diff --git a/jetty-plus/pom.xml b/jetty-plus/pom.xml index ee0e3c88797..5f5cdb99982 100644 --- a/jetty-plus/pom.xml +++ b/jetty-plus/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-plus diff --git a/jetty-proxy/pom.xml b/jetty-proxy/pom.xml index d0cda2c6ea7..90ce71a8250 100644 --- a/jetty-proxy/pom.xml +++ b/jetty-proxy/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-proxy diff --git a/jetty-quickstart/pom.xml b/jetty-quickstart/pom.xml index ecfa5fd53d4..1f76a98f0cb 100644 --- a/jetty-quickstart/pom.xml +++ b/jetty-quickstart/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 org.eclipse.jetty diff --git a/jetty-rewrite/pom.xml b/jetty-rewrite/pom.xml index 65eeaa0aea9..56aac9043df 100644 --- a/jetty-rewrite/pom.xml +++ b/jetty-rewrite/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-rewrite diff --git a/jetty-runner/pom.xml b/jetty-runner/pom.xml index cbcbb3b6fe4..e333d5f97f3 100644 --- a/jetty-runner/pom.xml +++ b/jetty-runner/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-runner diff --git a/jetty-security/pom.xml b/jetty-security/pom.xml index 9bff9e69804..2d2d56c54a0 100644 --- a/jetty-security/pom.xml +++ b/jetty-security/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-security diff --git a/jetty-server/pom.xml b/jetty-server/pom.xml index cbdc62a2189..2d865210493 100644 --- a/jetty-server/pom.xml +++ b/jetty-server/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-server diff --git a/jetty-servlet/pom.xml b/jetty-servlet/pom.xml index b49a4c5e977..e4ce852271f 100644 --- a/jetty-servlet/pom.xml +++ b/jetty-servlet/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-servlet diff --git a/jetty-servlets/pom.xml b/jetty-servlets/pom.xml index 68aeaf3b2d6..381b06d3ab1 100644 --- a/jetty-servlets/pom.xml +++ b/jetty-servlets/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-servlets diff --git a/jetty-spring/pom.xml b/jetty-spring/pom.xml index e1c00717a05..d90356a713d 100644 --- a/jetty-spring/pom.xml +++ b/jetty-spring/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-spring diff --git a/jetty-start/pom.xml b/jetty-start/pom.xml index a52a53a3b59..e5d7ce016b9 100644 --- a/jetty-start/pom.xml +++ b/jetty-start/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-start diff --git a/jetty-unixsocket/pom.xml b/jetty-unixsocket/pom.xml index 8d6913129d0..ace136f841d 100644 --- a/jetty-unixsocket/pom.xml +++ b/jetty-unixsocket/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-unixsocket diff --git a/jetty-util-ajax/pom.xml b/jetty-util-ajax/pom.xml index 78ef452c2a1..757110eb86d 100644 --- a/jetty-util-ajax/pom.xml +++ b/jetty-util-ajax/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-util-ajax diff --git a/jetty-util/pom.xml b/jetty-util/pom.xml index 1c52e23065b..47d3b894916 100644 --- a/jetty-util/pom.xml +++ b/jetty-util/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-util diff --git a/jetty-webapp/pom.xml b/jetty-webapp/pom.xml index d3f3741f6a9..1bc053d5ad1 100644 --- a/jetty-webapp/pom.xml +++ b/jetty-webapp/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-webapp diff --git a/jetty-websocket/javax-websocket-client-impl/pom.xml b/jetty-websocket/javax-websocket-client-impl/pom.xml index eb1d08bb2bd..bc578b8bdf7 100644 --- a/jetty-websocket/javax-websocket-client-impl/pom.xml +++ b/jetty-websocket/javax-websocket-client-impl/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-websocket/javax-websocket-server-impl/pom.xml b/jetty-websocket/javax-websocket-server-impl/pom.xml index 3c2e9f52426..e00384408d9 100644 --- a/jetty-websocket/javax-websocket-server-impl/pom.xml +++ b/jetty-websocket/javax-websocket-server-impl/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-websocket/pom.xml b/jetty-websocket/pom.xml index 2ad5513f192..cdcb6fd7e03 100644 --- a/jetty-websocket/pom.xml +++ b/jetty-websocket/pom.xml @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-websocket/websocket-api/pom.xml b/jetty-websocket/websocket-api/pom.xml index 7c5ded2b844..c44e13fbac7 100644 --- a/jetty-websocket/websocket-api/pom.xml +++ b/jetty-websocket/websocket-api/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-websocket/websocket-client/pom.xml b/jetty-websocket/websocket-client/pom.xml index e819f2ee253..d2cb9db0824 100644 --- a/jetty-websocket/websocket-client/pom.xml +++ b/jetty-websocket/websocket-client/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-websocket/websocket-common/pom.xml b/jetty-websocket/websocket-common/pom.xml index ebea81f7a3e..9b274383187 100644 --- a/jetty-websocket/websocket-common/pom.xml +++ b/jetty-websocket/websocket-common/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-websocket/websocket-server/pom.xml b/jetty-websocket/websocket-server/pom.xml index 439a884694d..c81672040af 100644 --- a/jetty-websocket/websocket-server/pom.xml +++ b/jetty-websocket/websocket-server/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.websocket websocket-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-websocket/websocket-servlet/pom.xml b/jetty-websocket/websocket-servlet/pom.xml index 39744bfe249..f406e5b30fd 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/jetty-xml/pom.xml b/jetty-xml/pom.xml index 960f9d207e4..b5ad35a7503 100644 --- a/jetty-xml/pom.xml +++ b/jetty-xml/pom.xml @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 jetty-xml diff --git a/pom.xml b/pom.xml index a0859569e2b..db5088ebb11 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT Jetty :: Project The Eclipse Jetty Project pom diff --git a/tests/pom.xml b/tests/pom.xml index fd584536f4d..53d1030c594 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml org.eclipse.jetty.tests diff --git a/tests/test-continuation/pom.xml b/tests/test-continuation/pom.xml index 7e6a7fb4481..ee8f31b8496 100644 --- a/tests/test-continuation/pom.xml +++ b/tests/test-continuation/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml 4.0.0 diff --git a/tests/test-http-client-transport/pom.xml b/tests/test-http-client-transport/pom.xml index 9775a39387f..acb4467dc66 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/tests/test-integration/pom.xml b/tests/test-integration/pom.xml index 8a62ce7793b..343f0843b9c 100644 --- a/tests/test-integration/pom.xml +++ b/tests/test-integration/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 1582ba5986e..752b0d188a8 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 4eafd81f88d..54006f10bf9 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT jmx-webapp war diff --git a/tests/test-jmx/pom.xml b/tests/test-jmx/pom.xml index d8b600bc821..7252550cfc4 100644 --- a/tests/test-jmx/pom.xml +++ b/tests/test-jmx/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 test-jmx-parent diff --git a/tests/test-loginservice/pom.xml b/tests/test-loginservice/pom.xml index b5f52be60e3..dd5c49f83b7 100644 --- a/tests/test-loginservice/pom.xml +++ b/tests/test-loginservice/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT test-loginservice Jetty Tests :: Login Service diff --git a/tests/test-quickstart/pom.xml b/tests/test-quickstart/pom.xml index 7aeddfd0de0..3eef2fed485 100644 --- a/tests/test-quickstart/pom.xml +++ b/tests/test-quickstart/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml 4.0.0 diff --git a/tests/test-sessions/pom.xml b/tests/test-sessions/pom.xml index 65681d004c5..4a45ea41c81 100644 --- a/tests/test-sessions/pom.xml +++ b/tests/test-sessions/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 7600a77df04..02fa4db8920 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 6afb88644ea..a4b275075ad 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 44048655e29..77765c19bd9 100644 --- a/tests/test-sessions/test-hazelcast-sessions/pom.xml +++ b/tests/test-sessions/test-hazelcast-sessions/pom.xml @@ -5,7 +5,7 @@ org.eclipse.jetty.tests test-sessions-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 3c0c671f6cf..f9966b7c148 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 d7e302d87c8..c23e99569d5 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 9f26a5377b8..5655c1e91cc 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 2a91895bbb5..01147cb3285 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 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 edb85c2f912..498a587fbc9 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT test-sessions-common Jetty Tests :: Sessions :: Common diff --git a/tests/test-webapps/pom.xml b/tests/test-webapps/pom.xml index 39b568f3a11..d9fd1487b54 100644 --- a/tests/test-webapps/pom.xml +++ b/tests/test-webapps/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests tests-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml test-webapps-parent diff --git a/tests/test-webapps/test-http2-webapp/pom.xml b/tests/test-webapps/test-http2-webapp/pom.xml index 1bc9d191277..4b97255d8fb 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT 4.0.0 diff --git a/tests/test-webapps/test-jaas-webapp/pom.xml b/tests/test-webapps/test-jaas-webapp/pom.xml index e8bd83ca3e9..2f5f115677b 100644 --- a/tests/test-webapps/test-jaas-webapp/pom.xml +++ b/tests/test-webapps/test-jaas-webapp/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT test-jaas-webapp Jetty Tests :: WebApp :: JAAS diff --git a/tests/test-webapps/test-jetty-webapp/pom.xml b/tests/test-webapps/test-jetty-webapp/pom.xml index cffaa108977..1761d05cf9d 100644 --- a/tests/test-webapps/test-jetty-webapp/pom.xml +++ b/tests/test-webapps/test-jetty-webapp/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml 4.0.0 diff --git a/tests/test-webapps/test-jndi-webapp/pom.xml b/tests/test-webapps/test-jndi-webapp/pom.xml index d6737c51b7e..56f49cfeb19 100644 --- a/tests/test-webapps/test-jndi-webapp/pom.xml +++ b/tests/test-webapps/test-jndi-webapp/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT test-jndi-webapp Jetty Tests :: WebApp :: JNDI diff --git a/tests/test-webapps/test-mock-resources/pom.xml b/tests/test-webapps/test-mock-resources/pom.xml index e7451a727e5..2be3627c307 100644 --- a/tests/test-webapps/test-mock-resources/pom.xml +++ b/tests/test-webapps/test-mock-resources/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT Jetty Tests :: WebApp :: Mock Resources test-mock-resources diff --git a/tests/test-webapps/test-proxy-webapp/pom.xml b/tests/test-webapps/test-proxy-webapp/pom.xml index 0922e1b8641..013a8bf7e95 100644 --- a/tests/test-webapps/test-proxy-webapp/pom.xml +++ b/tests/test-webapps/test-proxy-webapp/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT ../pom.xml 4.0.0 diff --git a/tests/test-webapps/test-servlet-spec/pom.xml b/tests/test-webapps/test-servlet-spec/pom.xml index c2598ffc15a..00beb53c0a0 100644 --- a/tests/test-webapps/test-servlet-spec/pom.xml +++ b/tests/test-webapps/test-servlet-spec/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests test-webapps-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT test-servlet-spec-parent Jetty Tests :: Spec Test WebApp :: Parent diff --git a/tests/test-webapps/test-servlet-spec/test-container-initializer/pom.xml b/tests/test-webapps/test-servlet-spec/test-container-initializer/pom.xml index 0ecaf90d7e3..e93673cfa8e 100644 --- a/tests/test-webapps/test-servlet-spec/test-container-initializer/pom.xml +++ b/tests/test-webapps/test-servlet-spec/test-container-initializer/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-servlet-spec-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT test-container-initializer jar diff --git a/tests/test-webapps/test-servlet-spec/test-spec-webapp/pom.xml b/tests/test-webapps/test-servlet-spec/test-spec-webapp/pom.xml index 1e76fdea031..81afc4ff11a 100644 --- a/tests/test-webapps/test-servlet-spec/test-spec-webapp/pom.xml +++ b/tests/test-webapps/test-servlet-spec/test-spec-webapp/pom.xml @@ -4,7 +4,7 @@ org.eclipse.jetty.tests test-servlet-spec-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT Jetty Tests :: Webapps :: Spec Webapp test-spec-webapp diff --git a/tests/test-webapps/test-servlet-spec/test-web-fragment/pom.xml b/tests/test-webapps/test-servlet-spec/test-web-fragment/pom.xml index 589d23b47f1..c248d346d2d 100644 --- a/tests/test-webapps/test-servlet-spec/test-web-fragment/pom.xml +++ b/tests/test-webapps/test-servlet-spec/test-web-fragment/pom.xml @@ -3,7 +3,7 @@ org.eclipse.jetty.tests test-servlet-spec-parent - 9.4.12.v20180830 + 9.4.13-SNAPSHOT Jetty Tests :: WebApp :: Servlet Spec :: Fragment Jar diff --git a/tests/test-webapps/test-webapp-rfc2616/pom.xml b/tests/test-webapps/test-webapp-rfc2616/pom.xml index bfb539138a3..e119b1c9a5a 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 - 9.4.12.v20180830 + 9.4.13-SNAPSHOT test-webapp-rfc2616 Jetty Tests :: WebApp :: RFC2616 From 831b68430076241ba2ae53bad163197343400e56 Mon Sep 17 00:00:00 2001 From: Simone Bordet Date: Fri, 31 Aug 2018 19:07:57 +0200 Subject: [PATCH 06/12] Issue #2871 - Server reads -1 after client resets HTTP/2 stream. Backported to jetty-9.3.x branch. Signed-off-by: Simone Bordet --- .../jetty/http2/client/StreamResetTest.java | 46 +++++++++++++++++++ .../org/eclipse/jetty/server/HttpInput.java | 25 ++++++---- 2 files changed, 61 insertions(+), 10 deletions(-) diff --git a/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/StreamResetTest.java b/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/StreamResetTest.java index e0f54b01989..ff756ba7881 100644 --- a/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/StreamResetTest.java +++ b/jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/StreamResetTest.java @@ -689,4 +689,50 @@ public class StreamResetTest extends AbstractTest Assert.assertTrue(writeLatch.await(5, TimeUnit.SECONDS)); } + + @Test + public void testResetBeforeBlockingRead() throws Exception + { + CountDownLatch requestLatch = new CountDownLatch(1); + CountDownLatch readLatch = new CountDownLatch(1); + CountDownLatch failureLatch = new CountDownLatch(1); + start(new HttpServlet() + { + @Override + protected void service(HttpServletRequest request, HttpServletResponse response) throws IOException + { + try + { + requestLatch.countDown(); + readLatch.await(); + // Attempt to read after reset must throw. + request.getInputStream().read(); + } + catch (InterruptedException x) + { + throw new InterruptedIOException(); + } + catch (IOException expected) + { + failureLatch.countDown(); + } + } + }); + Session client = newClient(new Session.Listener.Adapter()); + MetaData.Request request = newRequest("GET", new HttpFields()); + HeadersFrame frame = new HeadersFrame(request, null, false); + FuturePromise promise = new FuturePromise<>(); + client.newStream(frame, promise, new Stream.Listener.Adapter()); + Stream stream = promise.get(5, TimeUnit.SECONDS); + ByteBuffer content = ByteBuffer.wrap(new byte[1024]); + stream.data(new DataFrame(stream.getId(), content, true), Callback.NOOP); + Assert.assertTrue(requestLatch.await(5, TimeUnit.SECONDS)); + stream.reset(new ResetFrame(stream.getId(), ErrorCode.CANCEL_STREAM_ERROR.code), Callback.NOOP); + // Wait for the reset to arrive to the server and be processed. + Thread.sleep(1000); + // Try to read on server. + readLatch.countDown(); + // Read on server should fail. + Assert.assertTrue(failureLatch.await(5, TimeUnit.SECONDS)); + } } diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java b/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java index 72f589ecff3..dde395812cd 100644 --- a/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java +++ b/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java @@ -242,20 +242,25 @@ public class HttpInput extends ServletInputStream implements Runnable if (LOG.isDebugEnabled()) LOG.debug("{} consumed {}", this, content); - if (content == EOF_CONTENT) + if (!isError()) { - if (_listener == null) - _state = EOF; - else + if (content == EOF_CONTENT) { - _state = AEOF; - boolean woken = _channelState.onReadReady(); // force callback? - if (woken) - wake(); + if (_listener == null) + _state = EOF; + else + { + _state = AEOF; + boolean woken = _channelState.onReadReady(); // force callback? + if (woken) + wake(); + } + } + else if (content == EARLY_EOF_CONTENT) + { + _state = EARLY_EOF; } } - else if (content == EARLY_EOF_CONTENT) - _state = EARLY_EOF; content = _inputQ.peek(); } From 44c95865f2003fca2628a750d31f8069fdecfee3 Mon Sep 17 00:00:00 2001 From: Jesse McConnell Date: Fri, 31 Aug 2018 15:57:38 -0500 Subject: [PATCH 07/12] Issue #2878 fix post release javadoc generation --- jetty-distribution/pom.xml | 60 ++++++++++++++++++++++++++--------- pom.xml | 4 +-- tests/test-quickstart/pom.xml | 2 +- 3 files changed, 48 insertions(+), 18 deletions(-) diff --git a/jetty-distribution/pom.xml b/jetty-distribution/pom.xml index b1623f2f19b..b09b873cb73 100644 --- a/jetty-distribution/pom.xml +++ b/jetty-distribution/pom.xml @@ -29,7 +29,7 @@ copy-base-assembly-tree - process-resources + package copy-resources @@ -46,13 +46,42 @@ + + maven-dependency-plugin + + + + unpack-jetty-home + prepare-package + + unpack + + + + + org.eclipse.jetty + jetty-home + ${project.version} + zip + true + ${home-directory} + + + META-INF/** + + + + org.apache.maven.plugins maven-antrun-plugin populate distribution from home - process-resources + prepare-package run @@ -66,7 +95,7 @@ set jetty.sh - process-resources + prepare-package run @@ -78,7 +107,7 @@ removeKeystore - process-resources + prepare-package run @@ -95,7 +124,7 @@ maven-remote-resources-plugin - generate-resources + prepare-package process @@ -115,9 +144,10 @@ The jetty-home artifact is the starting point for the jetty-distribution and must happen early in the build process --> + copy - process-resources + prepare-package copy @@ -210,7 +240,7 @@ unpack-test-webapp-config - process-resources + prepare-package unpack @@ -232,7 +262,7 @@ unpack-test-jaas-config - process-resources + prepare-package unpack @@ -254,7 +284,7 @@ unpack-test-jndi-config - process-resources + prepare-package unpack @@ -276,7 +306,7 @@ unpack-test-spec-config - process-resources + prepare-package unpack @@ -297,7 +327,7 @@ unpack-documentation - process-resources + prepare-package unpack @@ -326,7 +356,7 @@ --> setup home - process-classes + package org.eclipse.jetty.start.Main @@ -344,7 +374,7 @@ --> setup demo-base-startd - process-classes + package org.eclipse.jetty.start.Main diff --git a/pom.xml b/pom.xml index db5088ebb11..bde08533672 100644 --- a/pom.xml +++ b/pom.xml @@ -205,7 +205,7 @@ @@ -1265,7 +1265,7 @@ org.apache.maven.plugins maven-javadoc-plugin - com.acme + com.acme,*.jmh http://docs.oracle.com/javase/8/docs/api/ http://docs.oracle.com/javaee/7/api diff --git a/tests/test-quickstart/pom.xml b/tests/test-quickstart/pom.xml index 3eef2fed485..013d9ca080a 100644 --- a/tests/test-quickstart/pom.xml +++ b/tests/test-quickstart/pom.xml @@ -139,7 +139,7 @@ copy - generate-resources + package copy From e893dd2546aa04619eeddfdbe74ab978622ea549 Mon Sep 17 00:00:00 2001 From: Jesse McConnell Date: Fri, 31 Aug 2018 16:05:00 -0500 Subject: [PATCH 08/12] update instructions --- pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bde08533672..be9546c35a9 100644 --- a/pom.xml +++ b/pom.xml @@ -1255,7 +1255,8 @@ aggregate-site From 3bea46c03cff030c72d93ceeb1e85fa2f81f7a93 Mon Sep 17 00:00:00 2001 From: Jesse McConnell Date: Fri, 31 Aug 2018 16:22:25 -0500 Subject: [PATCH 09/12] clean out comment --- jetty-distribution/pom.xml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/jetty-distribution/pom.xml b/jetty-distribution/pom.xml index b09b873cb73..c3fe2a86ae1 100644 --- a/jetty-distribution/pom.xml +++ b/jetty-distribution/pom.xml @@ -140,32 +140,6 @@ maven-dependency-plugin - - copy prepare-package From 44ace1f8c83d3d1aa4b163b718544521651bc62c Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Mon, 3 Sep 2018 16:19:18 +1000 Subject: [PATCH 10/12] cleanup Jenkinsfile: non needed/unused variable (#2880) Signed-off-by: olivier lamy --- Jenkinsfile | 185 +++++++++++++++++++++++----------------------------- pom.xml | 2 +- 2 files changed, 81 insertions(+), 106 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2ff5e914b5f..a971c18b0f1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,20 +17,13 @@ def getFullBuild(jdk, os) { return { node(os) { // System Dependent Locations - def mvntool = tool name: 'maven3.5', type: 'hudson.tasks.Maven$MavenInstallation' - def mvntoolInvoker = tool name: 'maven3.5', type: 'hudson.tasks.Maven$MavenInstallation' - def jdktool = tool name: "$jdk", type: 'hudson.model.JDK' def mvnName = 'maven3.5' def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // ".repository" // def settingsName = 'oss-settings.xml' def mavenOpts = '-Xms1g -Xmx4g -Djava.awt.headless=true' - // Environment - List mvnEnv = ["PATH+MVN=${mvntool}/bin", "PATH+JDK=${jdktool}/bin", "JAVA_HOME=${jdktool}/", "MAVEN_HOME=${mvntool}"] - mvnEnv.add("MAVEN_OPTS=$mavenOpts") - try - { + try { stage("Checkout - ${jdk}") { checkout scm } @@ -39,21 +32,17 @@ def getFullBuild(jdk, os) { throw e } - try - { + try { stage("Compile - ${jdk}") { - withEnv(mvnEnv) { - timeout(time: 15, unit: 'MINUTES') { - withMaven( - maven: mvnName, - jdk: "$jdk", - publisherStrategy: 'EXPLICIT', - globalMavenSettingsConfig: settingsName, - mavenOpts: mavenOpts, - mavenLocalRepo: localRepo) { - sh "mvn -V -B clean install -DskipTests -T6 -e" - } - + timeout(time: 15, unit: 'MINUTES') { + withMaven( + maven: mvnName, + jdk: "$jdk", + publisherStrategy: 'EXPLICIT', + globalMavenSettingsConfig: settingsName, + mavenOpts: mavenOpts, + mavenLocalRepo: localRepo) { + sh "mvn -V -B clean install -DskipTests -T6 -e" } } } @@ -62,20 +51,17 @@ def getFullBuild(jdk, os) { throw e } - try - { + try { stage("Javadoc - ${jdk}") { - withEnv(mvnEnv) { - timeout(time: 20, unit: 'MINUTES') { - withMaven( - maven: mvnName, - jdk: "$jdk", - publisherStrategy: 'EXPLICIT', - globalMavenSettingsConfig: settingsName, - mavenOpts: mavenOpts, - mavenLocalRepo: localRepo) { - sh "mvn -V -B javadoc:javadoc -T6 -e" - } + timeout(time: 20, unit: 'MINUTES') { + withMaven( + maven: mvnName, + jdk: "$jdk", + publisherStrategy: 'EXPLICIT', + globalMavenSettingsConfig: settingsName, + mavenOpts: mavenOpts, + mavenLocalRepo: localRepo) { + sh "mvn -V -B javadoc:javadoc -T6 -e" } } } @@ -84,61 +70,56 @@ def getFullBuild(jdk, os) { throw e } - try - { + try { stage("Test - ${jdk}") { - withEnv(mvnEnv) { - timeout(time: 90, unit: 'MINUTES') { - // Run test phase / ignore test failures - withMaven( - maven: mvnName, - jdk: "$jdk", - publisherStrategy: 'EXPLICIT', - globalMavenSettingsConfig: settingsName, - //options: [invokerPublisher(disabled: false)], - mavenOpts: mavenOpts, - mavenLocalRepo: localRepo) { - sh "mvn -V -B install -Dmaven.test.failure.ignore=true -e -Pmongodb -T3 -DmavenHome=${mvntoolInvoker} -Dunix.socket.tmp="+env.JENKINS_HOME - } - // withMaven doesn't label.. - // Report failures in the jenkins UI - junit testResults:'**/target/surefire-reports/TEST-*.xml,**/target/failsafe-reports/TEST-*.xml' - consoleParsers = [[parserName: 'JavaDoc'], + timeout(time: 90, unit: 'MINUTES') { + // Run test phase / ignore test failures + withMaven( + maven: mvnName, + jdk: "$jdk", + publisherStrategy: 'EXPLICIT', + globalMavenSettingsConfig: settingsName, + //options: [invokerPublisher(disabled: false)], + mavenOpts: mavenOpts, + mavenLocalRepo: localRepo) { + sh "mvn -V -B install -Dmaven.test.failure.ignore=true -e -Pmongodb -T3 -Dunix.socket.tmp="+env.JENKINS_HOME + } + // withMaven doesn't label.. + // Report failures in the jenkins UI + junit testResults:'**/target/surefire-reports/TEST-*.xml,**/target/failsafe-reports/TEST-*.xml' + consoleParsers = [[parserName: 'JavaDoc'], + [parserName: 'JavaC']]; + if (isMainBuild( jdk )) { + // Collect up the jacoco execution results + def jacocoExcludes = + // build tools + "**/org/eclipse/jetty/ant/**" + ",**/org/eclipse/jetty/maven/**" + + ",**/org/eclipse/jetty/jspc/**" + + // example code / documentation + ",**/org/eclipse/jetty/embedded/**" + ",**/org/eclipse/jetty/asyncrest/**" + + ",**/org/eclipse/jetty/demo/**" + + // special environments / late integrations + ",**/org/eclipse/jetty/gcloud/**" + ",**/org/eclipse/jetty/infinispan/**" + + ",**/org/eclipse/jetty/osgi/**" + ",**/org/eclipse/jetty/spring/**" + + ",**/org/eclipse/jetty/http/spi/**" + + // test classes + ",**/org/eclipse/jetty/tests/**" + ",**/org/eclipse/jetty/test/**"; + jacoco inclusionPattern: '**/org/eclipse/jetty/**/*.class', + exclusionPattern: jacocoExcludes, + execPattern : '**/target/jacoco.exec', + classPattern : '**/target/classes', + sourcePattern : '**/src/main/java' + consoleParsers = [[parserName: 'Maven'], + [parserName: 'JavaDoc'], [parserName: 'JavaC']]; - if (isMainBuild( jdk )) { - // Collect up the jacoco execution results - def jacocoExcludes = - // build tools - "**/org/eclipse/jetty/ant/**" + ",**/org/eclipse/jetty/maven/**" + - ",**/org/eclipse/jetty/jspc/**" + - // example code / documentation - ",**/org/eclipse/jetty/embedded/**" + ",**/org/eclipse/jetty/asyncrest/**" + - ",**/org/eclipse/jetty/demo/**" + - // special environments / late integrations - ",**/org/eclipse/jetty/gcloud/**" + ",**/org/eclipse/jetty/infinispan/**" + - ",**/org/eclipse/jetty/osgi/**" + ",**/org/eclipse/jetty/spring/**" + - ",**/org/eclipse/jetty/http/spi/**" + - // test classes - ",**/org/eclipse/jetty/tests/**" + ",**/org/eclipse/jetty/test/**"; - step( [$class : 'JacocoPublisher', - inclusionPattern: '**/org/eclipse/jetty/**/*.class', - exclusionPattern: jacocoExcludes, - execPattern : '**/target/jacoco.exec', - classPattern : '**/target/classes', - sourcePattern : '**/src/main/java'] ) - consoleParsers = [[parserName: 'Maven'], - [parserName: 'JavaDoc'], - [parserName: 'JavaC']]; - } + } - // Report on Maven and Javadoc warnings - step( [$class : 'WarningsPublisher', - consoleParsers: consoleParsers] ) - } - if(isUnstable()) - { - notifyBuild("Unstable / Test Errors", jdk) - } + // Report on Maven and Javadoc warnings + step( [$class : 'WarningsPublisher', + consoleParsers: consoleParsers] ) + } + if(isUnstable()) { + notifyBuild("Unstable / Test Errors", jdk) } } } catch(Exception e) { @@ -149,16 +130,14 @@ def getFullBuild(jdk, os) { try { stage ("Compact3 - ${jdk}") { - withEnv(mvnEnv) { - withMaven( - maven: mvnName, - jdk: "$jdk", - publisherStrategy: 'EXPLICIT', - globalMavenSettingsConfig: settingsName, - mavenOpts: mavenOpts, - mavenLocalRepo: localRepo) { - sh "mvn -f aggregates/jetty-all-compact3 -V -B -Pcompact3 clean install -T5" - } + withMaven( + maven: mvnName, + jdk: "$jdk", + publisherStrategy: 'EXPLICIT', + globalMavenSettingsConfig: settingsName, + mavenOpts: mavenOpts, + mavenLocalRepo: localRepo) { + sh "mvn -f aggregates/jetty-all-compact3 -V -B -Pcompact3 clean install -T5" } } } catch(Exception e) { @@ -177,8 +156,7 @@ def isMainBuild(jdk) { // True if this build is part of the "active" branches // for Jetty. -def isActiveBranch() -{ +def isActiveBranch() { def branchName = "${env.BRANCH_NAME}" return ( branchName == "master" || ( branchName.startsWith("jetty-") && branchName.endsWith(".x") ) ); @@ -186,16 +164,13 @@ def isActiveBranch() // Test if the Jenkins Pipeline or Step has marked the // current build as unstable -def isUnstable() -{ +def isUnstable() { return currentBuild.result == "UNSTABLE" } // Send a notification about the build status -def notifyBuild(String buildStatus, String jdk) -{ - if ( !isActiveBranch() ) - { +def notifyBuild(String buildStatus, String jdk) { + if ( !isActiveBranch() ) { // don't send notifications on transient branches return } diff --git a/pom.xml b/pom.xml index db5088ebb11..1fae1b70c42 100644 --- a/pom.xml +++ b/pom.xml @@ -1315,7 +1315,7 @@ org.eclipse.cbi.maven.plugins eclipse-jarsigner-plugin - ${cbi-plugins.version} + ${cbi-plugins.version} sign From fe3816d05a385d92f063b0d5e8c691e50773b5f1 Mon Sep 17 00:00:00 2001 From: Jan Bartel Date: Tue, 4 Sep 2018 14:25:10 +1000 Subject: [PATCH 11/12] Issue #2866 Put back jstl dep for jetty jspc maven plugin (#2869) Signed-off-by: Jan Bartel --- jetty-jspc-maven-plugin/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jetty-jspc-maven-plugin/pom.xml b/jetty-jspc-maven-plugin/pom.xml index e575ab90981..67ec5919e19 100644 --- a/jetty-jspc-maven-plugin/pom.xml +++ b/jetty-jspc-maven-plugin/pom.xml @@ -111,6 +111,11 @@ apache-jsp ${project.version} + + org.eclipse.jetty + apache-jstl + ${project.version} + org.apache.ant ant From d0b98186c038583275c1c1e60b7e2737e12215e7 Mon Sep 17 00:00:00 2001 From: Jan Bartel Date: Tue, 4 Sep 2018 14:25:27 +1000 Subject: [PATCH 12/12] Issue 2865 update to jasper 8.5.33 (#2870) Signed-off-by: Jan Bartel --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1fae1b70c42..611b9b79506 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ 1.2.3 1.2 1.1.3.v20160715 - 8.5.24.2 + 8.5.33 undefined 1.1.4