2012-05-08 12:20:21 -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/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-parent</artifactId>
|
2017-01-20 13:32:51 -05:00
|
|
|
<version>9.2.22-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-server</artifactId>
|
2013-07-15 05:52:45 -04:00
|
|
|
<name>Jetty :: SPDY :: Server Binding</name>
|
2012-05-08 12:20:21 -04:00
|
|
|
|
2012-09-24 01:04:57 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.server</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
|
2013-05-21 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2012-05-08 12:20:21 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
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>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2013-07-11 23:20:26 -04:00
|
|
|
<Export-Package>org.eclipse.jetty.spdy.server;version="9.1"</Export-Package>
|
2014-04-03 01:40:07 -04:00
|
|
|
<Import-Package>org.eclipse.jetty.alpn;resolution:=optional,org.eclipse.jetty.alpn.server;resolution:=optional, org.eclipse.jetty.npn;resolution:=optional,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>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-05-08 12:20:21 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2012-09-18 17:33:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2012-05-08 12:20:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<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>provided</scope>
|
|
|
|
</dependency>
|
2014-03-18 11:15:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.alpn</groupId>
|
|
|
|
<artifactId>alpn-api</artifactId>
|
|
|
|
<version>${alpn.api.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2012-05-08 12:20:21 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|