2014-03-20 07:09:54 -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/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>jetty-osgi-project</artifactId>
|
2015-10-07 18:41:32 -04:00
|
|
|
<version>9.4.0-SNAPSHOT</version>
|
2014-03-20 07:09:54 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-osgi-alpn</artifactId>
|
|
|
|
<name>Jetty :: OSGi ALPN Fragment</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>org.eclipse.jetty.osgi.alpn.fragment</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>parse-version</id>
|
|
|
|
<goals>
|
|
|
|
<goal>parse-version</goal>
|
|
|
|
</goals>
|
2015-05-22 01:21:56 -04:00
|
|
|
<configuration>
|
|
|
|
<versionString>${alpn.api.version}</versionString>
|
2016-07-14 00:10:40 -04:00
|
|
|
<propertyPrefix>alpn</propertyPrefix>
|
2015-05-22 01:21:56 -04:00
|
|
|
</configuration>
|
2014-03-20 07:09:54 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2014-08-15 05:35:49 -04:00
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
2014-03-20 07:09:54 -04:00
|
|
|
<configuration>
|
2014-08-15 05:35:49 -04:00
|
|
|
<instructions>
|
2014-03-20 07:09:54 -04:00
|
|
|
<Bundle-SymbolicName>${bundle-symbolic-name};singleton:=true</Bundle-SymbolicName>
|
|
|
|
<Bundle-Name>Jetty OSGi ALPN Fragment</Bundle-Name>
|
2014-08-15 05:35:49 -04:00
|
|
|
<Import-Package>!javax.*;!org.eclipse.jetty.*</Import-Package>
|
2016-07-14 00:10:40 -04:00
|
|
|
<Export-Package>org.eclipse.jetty.alpn;version="${alpn.majorVersion}.${alpn.minorVersion}.${alpn.incrementalVersion}"</Export-Package>
|
2014-03-20 07:09:54 -04:00
|
|
|
<Fragment-Host>system.bundle;extension:=framework</Fragment-Host>
|
2014-08-15 05:35:49 -04:00
|
|
|
</instructions>
|
2014-03-20 07:09:54 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2014-08-15 05:35:49 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.alpn</groupId>
|
|
|
|
<artifactId>alpn-api</artifactId>
|
|
|
|
<version>${alpn.api.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2014-03-20 07:09:54 -04:00
|
|
|
</project>
|