2014-06-09 07:08:54 -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-09 07:08:54 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-parent</artifactId>
|
2020-07-10 03:38:29 -04:00
|
|
|
<version>10.0.0-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>
|
2020-09-14 07:01:10 -04:00
|
|
|
<manual.test.port>28888</manual.test.port>
|
2014-08-15 05:35:49 -04:00
|
|
|
</properties>
|
|
|
|
|
2014-06-09 07:08:54 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-11-22 06:37:35 -05:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>
|
2019-06-24 11:42:39 -04:00
|
|
|
@{argLine} ${jetty.surefire.argLine} --add-reads org.eclipse.jetty.http2.server=jetty.servlet.api --add-modules jetty.servlet.api
|
2018-11-22 06:37:35 -05:00
|
|
|
</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-07-21 09:55:43 -04:00
|
|
|
<plugin>
|
2020-09-14 07:01:10 -04:00
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
2018-07-21 09:55:43 -04:00
|
|
|
<artifactId>h2spec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.eclipse.jetty.http2.server.H2SpecServer</mainClass>
|
|
|
|
<skip>${skipTests}</skip>
|
2020-09-14 07:01:10 -04:00
|
|
|
<junitPackage>org.eclipse.jetty.h2spec</junitPackage>
|
2020-06-09 03:48:15 -04:00
|
|
|
<excludeSpecs>
|
2020-09-14 07:01:10 -04:00
|
|
|
<excludeSpec>3.5 - Sends invalid connection preface</excludeSpec>
|
2020-06-09 03:48:15 -04:00
|
|
|
</excludeSpecs>
|
2018-07-21 09:55:43 -04:00
|
|
|
</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>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2018-07-21 09:55:43 -04:00
|
|
|
<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>
|
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>
|
2018-07-21 09:55:43 -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
|
|
|
|
2020-09-14 07:01:10 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>run-spec-server</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>spec-server-run</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.eclipse.jetty.http2.server.H2SpecServer</mainClass>
|
|
|
|
<classpathScope>test</classpathScope>
|
|
|
|
<arguments>
|
|
|
|
<argument>${manual.test.port}</argument>
|
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2014-06-09 07:08:54 -04:00
|
|
|
</project>
|