pom.xml | pom.xml | |||
---|---|---|---|---|
<?xml version="1.0" encoding="UTF-8"?> | <?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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | <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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | |||
<parent> | <parent> | |||
<groupId>io.dropwizard</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-parent</artifactId> | <artifactId>dropwizard-parent</artifactId> | |||
<version>0.8.5</version> | <version>0.9.0</version> | |||
</parent> | </parent> | |||
<artifactId>dropwizard-spdy</artifactId> | <artifactId>dropwizard-spdy</artifactId> | |||
<name>Dropwizard SPDY Support</name> | <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> | <dependencies> | |||
<dependency> | <dependency> | |||
<groupId>io.dropwizard</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-jetty</artifactId> | <artifactId>dropwizard-jetty</artifactId> | |||
<version>${project.version}</version> | ||||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.eclipse.jetty.spdy</groupId> | <groupId>org.eclipse.jetty.spdy</groupId> | |||
<artifactId>spdy-http-server</artifactId> | <artifactId>spdy-http-server</artifactId> | |||
<version>${jetty.version}</version> | ||||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.eclipse.jetty</groupId> | <groupId>org.eclipse.jetty</groupId> | |||
<artifactId>jetty-alpn-server</artifactId> | <artifactId>jetty-alpn-server</artifactId> | |||
<version>${jetty.version}</version> | ||||
</dependency> | </dependency> | |||
<!-- This needs to be on your JVM's bootpath for SPDY to work with ALPN protocol | <!-- 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.v201 41202.jar | -Xbootclasspath/p:/<path_to_alpn_boot_jar>/alpn-boot-7.1.2.v201 41202.jar | |||
The correct version depends on the specific JVM version. | The correct version depends on the specific JVM version. | |||
Consult http://www.eclipse.org/jetty/documentation/current/alp n-chapter.html for the reference --> | Consult http://www.eclipse.org/jetty/documentation/current/alp n-chapter.html for the reference --> | |||
<dependency> | <dependency> | |||
<groupId>org.mortbay.jetty.alpn</groupId> | <groupId>org.mortbay.jetty.alpn</groupId> | |||
<artifactId>alpn-boot</artifactId> | <artifactId>alpn-boot</artifactId> | |||
<version>7.1.2.v20141202</version> | <version>7.1.3.v20150130</version> | |||
<scope>provided</scope> | <scope>provided</scope> | |||
</dependency> | </dependency> | |||
</dependencies> | </dependencies> | |||
</project> | </project> | |||
End of changes. 6 change blocks. | ||||
5 lines changed or deleted | 14 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |