2014-06-11 12:23:51 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-06-24 11:42:39 -04:00
|
|
|
<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">
|
2014-06-11 12:23:51 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
2022-05-03 09:50:54 -04:00
|
|
|
<artifactId>http2</artifactId>
|
|
|
|
<version>12.0.0-SNAPSHOT</version>
|
2014-06-11 12:23:51 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>http2-client</artifactId>
|
2022-05-03 09:50:54 -04:00
|
|
|
<name>Jetty Core :: HTTP2 :: Client</name>
|
2014-06-11 12:23:51 -04:00
|
|
|
|
2018-11-22 06:37:35 -05:00
|
|
|
<properties>
|
2014-08-15 05:35:49 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.client</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
|
2014-06-11 12:23:51 -04:00
|
|
|
<build>
|
2018-11-22 06:37:35 -05:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>
|
2020-01-14 06:23:26 -05:00
|
|
|
@{argLine} ${jetty.surefire.argLine}
|
|
|
|
--add-reads org.eclipse.jetty.http2.client=org.eclipse.jetty.http2.hpack
|
2018-11-22 06:37:35 -05:00
|
|
|
</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2014-06-11 12:23:51 -04:00
|
|
|
</build>
|
|
|
|
|
2018-11-22 06:37:35 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-client</artifactId>
|
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2018-11-22 06:37:35 -05:00
|
|
|
</dependencies>
|
2014-06-11 12:23:51 -04:00
|
|
|
|
|
|
|
</project>
|