Skip to content

Commit 69da540

Browse files
thboileauThierry Boileau
and
Thierry Boileau
authored
2.6 jetty http2 http3 (#1457)
* add support of Http2 and Http3 protocols * Eclipse format * Taken into account PR review comment * Add support of HTTP3 server side * Fixed TUs * Format code * Fixed TUs --------- Co-authored-by: Thierry Boileau <[email protected]>
1 parent e522aad commit 69da540

File tree

11 files changed

+947
-477
lines changed

11 files changed

+947
-477
lines changed

org.restlet.java/org.restlet.ext.jetty/pom.xml

+28-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,38 @@
1717
<dependencies>
1818
<dependency>
1919
<groupId>org.eclipse.jetty</groupId>
20-
<artifactId>jetty-client</artifactId>
20+
<artifactId>jetty-server</artifactId>
21+
<version>${lib-jetty-version}</version>
22+
</dependency>
23+
<dependency>
24+
<groupId>org.eclipse.jetty.http2</groupId>
25+
<artifactId>jetty-http2-server</artifactId>
2126
<version>${lib-jetty-version}</version>
2227
</dependency>
2328
<dependency>
2429
<groupId>org.eclipse.jetty</groupId>
25-
<artifactId>jetty-server</artifactId>
26-
<version>${lib-jetty-version}</version>
30+
<artifactId>jetty-alpn-server</artifactId>
31+
<version>${lib-jetty-version}</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.eclipse.jetty</groupId>
35+
<artifactId>jetty-alpn-java-server</artifactId>
36+
<version>${lib-jetty-version}</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.eclipse.jetty.http3</groupId>
40+
<artifactId>jetty-http3-server</artifactId>
41+
<version>${lib-jetty-version}</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.eclipse.jetty.quic</groupId>
45+
<artifactId>jetty-quic-server</artifactId>
46+
<version>${lib-jetty-version}</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.eclipse.jetty</groupId>
50+
<artifactId>jetty-client</artifactId>
51+
<version>${lib-jetty-version}</version>
2752
</dependency>
2853
<dependency>
2954
<groupId>org.eclipse.jetty.http2</groupId>

0 commit comments

Comments
 (0)