Upgrading HTTP/2 hpack to latest version

Motivation:

Twitter hpack has upgraded to 0.9.1, we should upgrade to the latest.

Modifications:

Updated the parent pom to specify the dependency version. Updated the
http2 pom to use the version specified by the parent.

Result:

HTTP/2 updated to the latest hpack release.
This commit is contained in:
nmittler 2014-10-16 08:50:45 -07:00
parent 5904c47316
commit e809f97136
2 changed files with 5 additions and 1 deletions

View File

@ -43,7 +43,6 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>hpack</artifactId>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>

View File

@ -462,6 +462,11 @@
</dependency>
<!-- SPDY and HTTP/2 - completely optional -->
<dependency>
<groupId>com.twitter</groupId>
<artifactId>hpack</artifactId>
<version>0.9.1</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.npn</groupId>
<artifactId>npn-api</artifactId>