2014-06-01 18:58:04 -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/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
2014-06-09 07:08:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-parent</artifactId>
|
2021-06-29 11:51:22 -04:00
|
|
|
<version>10.0.7-SNAPSHOT</version>
|
2014-06-01 18:58:04 -04:00
|
|
|
</parent>
|
2014-06-09 07:08:54 -04:00
|
|
|
|
2014-06-01 18:58:04 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2014-06-09 07:08:54 -04:00
|
|
|
<artifactId>http2-common</artifactId>
|
|
|
|
<name>Jetty :: HTTP2 :: Common</name>
|
|
|
|
|
2014-06-01 18:58:04 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2014-06-09 08:12:46 -04:00
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
2014-06-09 07:08:54 -04:00
|
|
|
<artifactId>http2-hpack</artifactId>
|
2014-06-04 07:18:22 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2015-12-22 15:09:57 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-03-20 12:12:08 -04:00
|
|
|
<scope>test</scope>
|
2020-02-18 11:40:20 -05:00
|
|
|
</dependency>
|
2014-06-01 18:58:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2014-06-09 07:08:54 -04:00
|
|
|
|
2015-12-22 15:09:57 -05:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.common</bundle-symbolic-name>
|
|
|
|
</properties>
|
2014-08-15 05:35:49 -04:00
|
|
|
|
2014-06-01 18:58:04 -04:00
|
|
|
</project>
|