aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_jetty
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2021-04-08 16:11:57 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2021-04-12 13:43:38 +0200
commitbfaf3f88b7b0a8fd094aef101e920709ed788731 (patch)
tree969df326c9222eecdd6e25754ec27766e947c07d /jdisc_jetty
parent791c4b163669d5ef8ea671be1efacb89655d3935 (diff)
Add HTTP/2 support to jdisc
Diffstat (limited to 'jdisc_jetty')
-rw-r--r--jdisc_jetty/pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/jdisc_jetty/pom.xml b/jdisc_jetty/pom.xml
index 89e573651e9..fcbf0eed8b7 100644
--- a/jdisc_jetty/pom.xml
+++ b/jdisc_jetty/pom.xml
@@ -16,6 +16,18 @@
<packaging>jar</packaging>
<dependencies>
<dependency>
+ <groupId>org.eclipse.jetty.alpn</groupId>
+ <artifactId>alpn-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty.http2</groupId>
+ <artifactId>http2-server</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-alpn-java-server</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-continuation</artifactId>
</dependency>