Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2015-11-05 11:05:08 +0000
committerSimone Bordet2015-11-05 11:05:08 +0000
commitb4cf2921c8ff324f8b60b5c0867fef202cbf6040 (patch)
treed66a9f2f0ae057a4565272e53493521f3fad55c1 /pom.xml
parentaf0b6284e527d84f6fbb5838a7e2b47602670a1e (diff)
downloadorg.eclipse.jetty.project-b4cf2921c8ff324f8b60b5c0867fef202cbf6040.tar.gz
org.eclipse.jetty.project-b4cf2921c8ff324f8b60b5c0867fef202cbf6040.tar.xz
org.eclipse.jetty.project-b4cf2921c8ff324f8b60b5c0867fef202cbf6040.zip
Updated ALPN version for JDK 8u65 and 8u66.
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 f2e2c6edf4..4b6b945a00 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1132,5 +1132,29 @@
<alpn.version>8.1.5.v20150921</alpn.version>
</properties>
</profile>
+ <profile>
+ <id>8u65</id>
+ <activation>
+ <property>
+ <name>java.version</name>
+ <value>1.8.0_65</value>
+ </property>
+ </activation>
+ <properties>
+ <alpn.version>8.1.6.v20151105</alpn.version>
+ </properties>
+ </profile>
+ <profile>
+ <id>8u66</id>
+ <activation>
+ <property>
+ <name>java.version</name>
+ <value>1.8.0_66</value>
+ </property>
+ </activation>
+ <properties>
+ <alpn.version>8.1.6.v20151105</alpn.version>
+ </properties>
+ </profile>
</profiles>
</project>

Back to the top