2012-05-08 12:20:21 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2013-06-05 09:25:52 -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">
|
2012-05-08 12:20:21 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-parent</artifactId>
|
2013-04-18 23:59:18 -04:00
|
|
|
<version>9.1.0-SNAPSHOT</version>
|
2012-05-08 12:20:21 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-09-18 17:33:30 -04:00
|
|
|
<artifactId>spdy-http-server</artifactId>
|
2013-07-15 05:52:45 -04:00
|
|
|
<name>Jetty :: SPDY :: HTTP Server</name>
|
2012-05-08 12:20:21 -04:00
|
|
|
|
2012-09-24 01:04:57 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.http.server</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
|
2012-05-08 12:20:21 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2012-11-19 17:28:37 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>config</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-05-08 12:20:21 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.mortbay.jetty.npn</groupId>
|
|
|
|
<artifactId>npn-boot</artifactId>
|
|
|
|
<version>${npn.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<overWrite>false</overWrite>
|
|
|
|
<outputDirectory>${project.build.directory}/npn</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>-Xbootclasspath/p:${project.build.directory}/npn/npn-boot-${npn.version}.jar</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-10-06 05:26:14 -04:00
|
|
|
<plugin>
|
2012-09-24 01:04:57 -04:00
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
2012-10-06 05:26:14 -04:00
|
|
|
<extensions>true</extensions>
|
2012-09-24 01:04:57 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2012-10-06 05:26:14 -04:00
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
2012-09-24 01:04:57 -04:00
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2013-07-11 23:20:26 -04:00
|
|
|
<Export-Package>org.eclipse.jetty.spdy.server.http;version="9.1",
|
|
|
|
org.eclipse.jetty.spdy.server.proxy;version="9.1"
|
2013-06-05 09:25:52 -04:00
|
|
|
</Export-Package>
|
|
|
|
<Import-Package>!org.eclipse.jetty.npn,org.eclipse.jetty.*;version="[9.0,10.0)",*
|
|
|
|
</Import-Package>
|
2012-10-06 05:26:14 -04:00
|
|
|
<_nouses>true</_nouses>
|
2012-09-24 01:04:57 -04:00
|
|
|
</instructions>
|
2013-06-05 09:25:52 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2012-09-24 01:04:57 -04:00
|
|
|
</plugin>
|
2013-06-05 09:25:52 -04:00
|
|
|
</plugins>
|
2012-05-08 12:20:21 -04:00
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
2013-07-15 05:52:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-http-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2012-05-08 12:20:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
2012-09-18 17:33:30 -04:00
|
|
|
<artifactId>spdy-server</artifactId>
|
2012-05-08 12:20:21 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-01-04 09:52:10 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-06-05 09:25:52 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-03-13 13:17:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-05-08 12:20:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.npn</groupId>
|
|
|
|
<artifactId>npn-api</artifactId>
|
2013-03-05 00:50:22 -05:00
|
|
|
<version>${npn.api.version}</version>
|
2012-05-08 12:20:21 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-10-21 01:19:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-continuation</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-07-27 09:51:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-05-08 12:20:21 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|