Merged branch 'jetty-9.4.x' into 'master'.
This commit is contained in:
commit
0d8d754772
|
@ -1,3 +1,5 @@
|
||||||
|
#!groovy
|
||||||
|
|
||||||
node {
|
node {
|
||||||
// System Dependent Locations
|
// System Dependent Locations
|
||||||
def mvntool = tool name: 'maven3', type: 'hudson.tasks.Maven$MavenInstallation'
|
def mvntool = tool name: 'maven3', type: 'hudson.tasks.Maven$MavenInstallation'
|
||||||
|
|
|
@ -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
|
|
@ -243,6 +243,7 @@ The ALPN implementation, relying on modifications of OpenJDK classes, updates ev
|
||||||
|1.8.0u102 |8.1.9.v20160720
|
|1.8.0u102 |8.1.9.v20160720
|
||||||
|1.8.0u111 |8.1.9.v20160720
|
|1.8.0u111 |8.1.9.v20160720
|
||||||
|1.8.0u112 |8.1.10.v20161026
|
|1.8.0u112 |8.1.10.v20161026
|
||||||
|
|1.8.0u121 |8.1.11.v20170118
|
||||||
|=============================
|
|=============================
|
||||||
|
|
||||||
[[alpn-build]]
|
[[alpn-build]]
|
||||||
|
|
|
@ -118,7 +118,8 @@ public class DumpHandler extends AbstractHandler.ErrorDispatchHandler
|
||||||
String name=headers.nextElement();
|
String name=headers.nextElement();
|
||||||
writer.write(name);
|
writer.write(name);
|
||||||
writer.write(": ");
|
writer.write(": ");
|
||||||
writer.write(request.getHeader(name));
|
String value = request.getHeader(name);
|
||||||
|
writer.write(value == null?"":value);
|
||||||
writer.write("\n");
|
writer.write("\n");
|
||||||
}
|
}
|
||||||
writer.write("</pre>\n<h3>Parameters:</h3>\n<pre>");
|
writer.write("</pre>\n<h3>Parameters:</h3>\n<pre>");
|
||||||
|
|
|
@ -16,12 +16,6 @@
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
//
|
//
|
||||||
|
|
||||||
/*
|
|
||||||
* Created on 9/01/2004
|
|
||||||
*
|
|
||||||
* To change the template for this generated file go to
|
|
||||||
* Window>Preferences>Java>Code Generation>Code and Comments
|
|
||||||
*/
|
|
||||||
package org.eclipse.jetty.server;
|
package org.eclipse.jetty.server;
|
||||||
|
|
||||||
import static org.hamcrest.Matchers.containsString;
|
import static org.hamcrest.Matchers.containsString;
|
||||||
|
@ -50,9 +44,6 @@ import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@RunWith(AdvancedRunner.class)
|
@RunWith(AdvancedRunner.class)
|
||||||
public class PartialRFC2616Test
|
public class PartialRFC2616Test
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
12
pom.xml
|
@ -1422,6 +1422,18 @@
|
||||||
<alpn.version>8.1.10.v20161026</alpn.version>
|
<alpn.version>8.1.10.v20161026</alpn.version>
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</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>
|
</profiles>
|
||||||
|
|
||||||
<issueManagement>
|
<issueManagement>
|
||||||
|
|
Loading…
Reference in New Issue