jetty.project/jetty-http2/pom.xml

55 lines
1.7 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>
<artifactId>jetty-project</artifactId>
<groupId>org.eclipse.jetty</groupId>
2014-06-04 09:08:54 -04:00
<version>10.0.0-SNAPSHOT</version>
</parent>
2014-06-09 07:08:54 -04:00
<modelVersion>4.0.0</modelVersion>
2014-06-09 07:08:54 -04:00
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>http2-parent</artifactId>
<packaging>pom</packaging>
<name>Jetty :: HTTP2</name>
<modules>
<module>http2-hpack</module>
<module>http2-common</module>
<module>http2-server</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>manifest</goal>
</goals>
<configuration>
<instructions>
2014-06-09 07:08:54 -04:00
<Export-Package>org.eclipse.jetty.http2.*;version="9.1"</Export-Package>
<Import-Package>org.eclipse.jetty.*;version="[9.0,10.0)",*</Import-Package>
<_nouses>true</_nouses>
</instructions>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
2014-06-09 07:08:54 -04:00
</project>