2021-09-11 12:04:56 -04:00
|
|
|
<?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">
|
2024-01-03 04:12:56 -05:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-09-11 12:04:56 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.http3</groupId>
|
|
|
|
<artifactId>http3-parent</artifactId>
|
2024-06-27 12:16:43 -04:00
|
|
|
<version>10.0.23-SNAPSHOT</version>
|
2021-09-11 12:04:56 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>http3-tests</artifactId>
|
|
|
|
<name>Jetty :: HTTP3 :: Tests</name>
|
|
|
|
|
2022-07-13 19:42:28 -04:00
|
|
|
<properties>
|
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
|
|
|
</properties>
|
|
|
|
|
2021-09-11 12:04:56 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
2021-10-18 18:25:16 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-java-server</artifactId>
|
2021-09-11 12:04:56 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
2021-09-11 12:04:56 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2021-09-11 12:04:56 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-09-21 14:10:57 -04:00
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-server</artifactId>
|
2021-09-21 14:10:57 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-10-22 07:26:12 -04:00
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty.http3</groupId>
|
|
|
|
<artifactId>http3-client</artifactId>
|
2021-10-22 07:26:12 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-09-11 12:04:56 -04:00
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty.http3</groupId>
|
|
|
|
<artifactId>http3-http-client-transport</artifactId>
|
2021-10-18 18:25:16 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty.http3</groupId>
|
|
|
|
<artifactId>http3-server</artifactId>
|
2021-10-18 18:25:16 -04:00
|
|
|
<scope>test</scope>
|
2021-09-11 12:04:56 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty.quic</groupId>
|
|
|
|
<artifactId>quic-server</artifactId>
|
2021-10-18 18:25:16 -04:00
|
|
|
<scope>test</scope>
|
2021-09-11 12:04:56 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|