Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2016-01-21 16:25:48 +0000
committerSimone Bordet2016-01-21 16:25:48 +0000
commit35bc923f50a8d82c147534422f541e8b9e84c0f4 (patch)
treed95b6246669f9429358da7d7518310f02c7dd5aa /pom.xml
parent50100ca86d3b1bd85c04ffd8938f8030a50811f8 (diff)
downloadorg.eclipse.jetty.project-35bc923f50a8d82c147534422f541e8b9e84c0f4.tar.gz
org.eclipse.jetty.project-35bc923f50a8d82c147534422f541e8b9e84c0f4.tar.xz
org.eclipse.jetty.project-35bc923f50a8d82c147534422f541e8b9e84c0f4.zip
Updated ALPN version for JDK 8u71 and 8u72.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index fc6bcf0712..35c72623d0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1156,5 +1156,29 @@
<alpn.version>8.1.6.v20151105</alpn.version>
</properties>
</profile>
+ <profile>
+ <id>8u71</id>
+ <activation>
+ <property>
+ <name>java.version</name>
+ <value>1.8.0_71</value>
+ </property>
+ </activation>
+ <properties>
+ <alpn.version>8.1.7.v20160121</alpn.version>
+ </properties>
+ </profile>
+ <profile>
+ <id>8u72</id>
+ <activation>
+ <property>
+ <name>java.version</name>
+ <value>1.8.0_72</value>
+ </property>
+ </activation>
+ <properties>
+ <alpn.version>8.1.7.v20160121</alpn.version>
+ </properties>
+ </profile>
</profiles>
</project>

Back to the top