2015-03-02 07:06:16 -05: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">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-parent</artifactId>
|
2018-07-11 18:32:16 -04:00
|
|
|
<version>9.4.12-SNAPSHOT</version>
|
2015-03-02 07:06:16 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>http2-alpn-tests</artifactId>
|
|
|
|
<name>Jetty :: HTTP2 :: ALPN Tests</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.alpn.tests</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
|
2017-01-13 13:02:28 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
2015-03-02 07:06:16 -05:00
|
|
|
<configuration>
|
2017-01-13 13:02:28 -05:00
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.mortbay.jetty.alpn</groupId>
|
|
|
|
<artifactId>alpn-boot</artifactId>
|
|
|
|
<version>${alpn.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<overWrite>false</overWrite>
|
|
|
|
<outputDirectory>${project.build.directory}/alpn</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
2015-03-02 07:06:16 -05:00
|
|
|
</configuration>
|
2017-01-13 13:02:28 -05:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>-Xbootclasspath/p:${project.build.directory}/alpn/alpn-boot-${alpn.version}.jar</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-03-02 07:06:16 -05:00
|
|
|
|
|
|
|
<dependencies>
|
2017-09-20 19:35:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.alpn</groupId>
|
|
|
|
<artifactId>alpn-api</artifactId>
|
|
|
|
<version>${alpn.api.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-03-02 07:06:16 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2017-09-20 18:07:56 -04:00
|
|
|
<artifactId>jetty-alpn-openjdk8-server</artifactId>
|
2015-03-02 07:06:16 -05:00
|
|
|
<version>${project.version}</version>
|
2017-01-13 13:02:28 -05:00
|
|
|
<scope>test</scope>
|
2015-03-02 07:06:16 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2017-08-08 12:24:41 -04:00
|
|
|
|
2017-09-20 19:02:24 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>jdk9</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[1.9,)</jdk>
|
|
|
|
</activation>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-java-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2015-03-02 07:06:16 -05:00
|
|
|
</project>
|