Update ALPN boot version

Motivation:
A new version of ALPN boot has been released.

Modifications:
- Update the pom to pull in this new version

Result:
New JDK get new ALPN boot.
This commit is contained in:
Scott Mitchell 2015-11-04 14:35:01 -08:00
parent 21e27da410
commit 8f07416baf

14
pom.xml
View File

@ -204,7 +204,7 @@
<jdk>[1.8,)</jdk> <jdk>[1.8,)</jdk>
</activation> </activation>
<properties> <properties>
<jetty.alpn.version>8.1.4.v20150727</jetty.alpn.version> <jetty.alpn.version>8.1.5.v20150921</jetty.alpn.version>
</properties> </properties>
</profile> </profile>
<profile> <profile>
@ -568,6 +568,18 @@
<jetty.alpn.version>8.1.4.v20150727</jetty.alpn.version> <jetty.alpn.version>8.1.4.v20150727</jetty.alpn.version>
</properties> </properties>
</profile> </profile>
<profile>
<id>alpn-8u60</id>
<activation>
<property>
<name>java.version</name>
<value>1.8.0_60</value>
</property>
</activation>
<properties>
<jetty.alpn.version>8.1.5.v20150921</jetty.alpn.version>
</properties>
</profile>
<profile> <profile>
<!-- <!--
This profile exists because either ALPN or NPN can exits on the class path at once, but not both. This profile exists because either ALPN or NPN can exits on the class path at once, but not both.