59 lines
1.8 KiB
XML
Raw Normal View History

<?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/maven-v4_0_0.xsd">
<parent>
2014-06-09 13:08:54 +02:00
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>http2-parent</artifactId>
2016-01-15 17:15:14 -07:00
<version>9.3.8-SNAPSHOT</version>
</parent>
2014-06-09 13:08:54 +02:00
<modelVersion>4.0.0</modelVersion>
2014-06-09 13:08:54 +02:00
<artifactId>http2-common</artifactId>
<name>Jetty :: HTTP2 :: Common</name>
<dependencies>
<dependency>
2014-06-09 14:12:46 +02:00
<groupId>org.eclipse.jetty.http2</groupId>
2014-06-09 13:08:54 +02:00
<artifactId>http2-hpack</artifactId>
2014-06-04 13:18:22 +02:00
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.toolchain</groupId>
<artifactId>jetty-test-helper</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
2014-06-09 13:08:54 +02:00
<properties>
<bundle-symbolic-name>${project.groupId}.common</bundle-symbolic-name>
</properties>
2014-08-15 19:35:49 +10:00
<build>
2015-02-12 10:31:36 +11:00
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>manifest</goal>
</goals>
<configuration>
<instructions>
<Export-Package>org.eclipse.jetty.http2.*;version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}";</Export-Package>
</instructions>
</configuration>
</execution>
</executions>
2015-02-12 10:31:36 +11:00
</plugin>
</plugins>
</build>
2014-06-09 13:08:54 +02:00
</project>