2014-06-09 07:08:54 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-07-21 09:55:43 -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-09 07:08:54 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-parent</artifactId>
|
2019-06-10 14:40:17 -04:00
|
|
|
<version>9.4.20-SNAPSHOT</version>
|
2014-06-09 07:08:54 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>http2-server</artifactId>
|
|
|
|
<name>Jetty :: HTTP2 :: Server</name>
|
|
|
|
|
2018-07-21 09:55:43 -04:00
|
|
|
<properties>
|
2014-08-15 05:35:49 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.server</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
|
2014-06-09 07:08:54 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-07-21 09:55:43 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.madgnome</groupId>
|
|
|
|
<artifactId>h2spec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.eclipse.jetty.http2.server.H2SpecServer</mainClass>
|
|
|
|
<skip>${skipTests}</skip>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>h2spec</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>h2spec</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-06-09 07:08:54 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2018-07-21 09:55:43 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.alpn</groupId>
|
|
|
|
<artifactId>alpn-api</artifactId>
|
|
|
|
<version>${alpn.api.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<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
|
|
|
|
|
|
|
</project>
|