Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2014-04-22 17:40:28 +0000
committerJesse McConnell2014-09-02 19:44:09 +0000
commit1a30b5fb9fba16ac1ed1097145f9c41102f51d13 (patch)
tree6a06a48cf30a0c2d1a18b673f808d4a32b9a172d
parentae74fc0bf74237d16c8aebeed5aa3280b7901310 (diff)
downloadorg.eclipse.jetty.project-1a30b5fb9fba16ac1ed1097145f9c41102f51d13.tar.gz
org.eclipse.jetty.project-1a30b5fb9fba16ac1ed1097145f9c41102f51d13.tar.xz
org.eclipse.jetty.project-1a30b5fb9fba16ac1ed1097145f9c41102f51d13.zip
Added profile to build with JDK 7u55, and related NPN version.
-rw-r--r--jetty-spdy/pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/jetty-spdy/pom.xml b/jetty-spdy/pom.xml
index 24bd1dab60..5bf337abf5 100644
--- a/jetty-spdy/pom.xml
+++ b/jetty-spdy/pom.xml
@@ -194,6 +194,18 @@
<npn.version>1.1.6.v20130911</npn.version>
</properties>
</profile>
+ <profile>
+ <id>7u55</id>
+ <activation>
+ <property>
+ <name>java.version</name>
+ <value>1.7.0_55</value>
+ </property>
+ </activation>
+ <properties>
+ <npn.version>1.1.7.v20140316</npn.version>
+ </properties>
+ </profile>
</profiles>
</project>

Back to the top