forked from dropwizard/dropwizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
52 lines (46 loc) · 1.95 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>dropwizard-spdy</artifactId>
<name>Dropwizard SPDY Support</name>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-jetty</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.spdy</groupId>
<artifactId>spdy-http-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-server</artifactId>
</dependency>
<!-- This needs to be on your JVM's bootpath for SPDY to work with ALPN protocol
-Xbootclasspath/p:/<path_to_alpn_boot_jar>/alpn-boot-7.1.2.v20141202.jar
The correct version depends on the specific JVM version.
Consult http://www.eclipse.org/jetty/documentation/current/alpn-chapter.html for the reference -->
<dependency>
<groupId>org.mortbay.jetty.alpn</groupId>
<artifactId>alpn-boot</artifactId>
<version>7.1.3.v20150130</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>