Merged branch 'jetty-9.3.x' into 'jetty-9.4.x'.

This commit is contained in:
Simone Bordet 2017-01-18 18:54:47 +01:00
commit a7938910b7
7 changed files with 27 additions and 10 deletions

2
Jenkinsfile vendored
View File

@ -1,3 +1,5 @@
#!groovy
node {
// System Dependent Locations
def mvntool = tool name: 'maven3', type: 'hudson.tasks.Maven$MavenInstallation'

View File

@ -0,0 +1,5 @@
[files]
http://central.maven.org/maven2/org/mortbay/jetty/alpn/alpn-boot/8.1.11.v20170118/alpn-boot-8.1.11.v20170118.jar|lib/alpn/alpn-boot-8.1.11.v20170118.jar
[exec]
-Xbootclasspath/p:lib/alpn/alpn-boot-8.1.11.v20170118.jar

View File

@ -243,6 +243,7 @@ The ALPN implementation, relying on modifications of OpenJDK classes, updates ev
|1.8.0u102 |8.1.9.v20160720
|1.8.0u111 |8.1.9.v20160720
|1.8.0u112 |8.1.10.v20161026
|1.8.0u121 |8.1.11.v20170118
|=============================
[[alpn-build]]

View File

@ -118,7 +118,8 @@ public class DumpHandler extends AbstractHandler.ErrorDispatchHandler
String name=headers.nextElement();
writer.write(name);
writer.write(": ");
writer.write(request.getHeader(name));
String value = request.getHeader(name);
writer.write(value == null?"":value);
writer.write("\n");
}
writer.write("</pre>\n<h3>Parameters:</h3>\n<pre>");

View File

@ -16,12 +16,6 @@
// ========================================================================
//
/*
* Created on 9/01/2004
*
* To change the template for this generated file go to
* Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
*/
package org.eclipse.jetty.server;
import static org.hamcrest.Matchers.containsString;
@ -50,9 +44,6 @@ import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
/**
*
*/
@RunWith(AdvancedRunner.class)
public class PartialRFC2616Test
{

View File

@ -0,0 +1,5 @@
[files]
http://central.maven.org/maven2/org/mortbay/jetty/alpn/alpn-boot/8.1.11.v20170118/alpn-boot-8.1.11.v20170118.jar|lib/alpn/alpn-boot-8.1.11.v20170118.jar
[exec]
-Xbootclasspath/p:lib/alpn/alpn-boot-8.1.11.v20170118.jar

12
pom.xml
View File

@ -1423,6 +1423,18 @@
<alpn.version>8.1.10.v20161026</alpn.version>
</properties>
</profile>
<profile>
<id>8u121</id>
<activation>
<property>
<name>java.version</name>
<value>1.8.0_121</value>
</property>
</activation>
<properties>
<alpn.version>8.1.11.v20170118</alpn.version>
</properties>
</profile>
</profiles>
<issueManagement>