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>
|
2022-09-16 05:50:26 -04:00
|
|
|
<version>11.0.13-SNAPSHOT</version>
|
2014-03-20 07:09:54 -04:00
|
|
|
</parent>
|
2018-10-12 03:45:23 -04:00
|
|
|
|
|
|
|
<!-- TODO: review if this module is still needed -->
|
|
|
|
|
2014-03-20 07:09:54 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-osgi-alpn</artifactId>
|
|
|
|
<name>Jetty :: OSGi ALPN Fragment</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
2019-02-11 04:16:07 -05:00
|
|
|
<bundle-symbolic-name>${project.groupId}.alpn.fragment</bundle-symbolic-name>
|
2014-03-20 07:09:54 -04:00
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<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>
|
2019-06-24 11:42:39 -04:00
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>${bundle-symbolic-name};singleton:=true</Bundle-SymbolicName>
|
|
|
|
<Bundle-Name>Jetty OSGi ALPN Fragment</Bundle-Name>
|
|
|
|
<Import-Package>!javax.*;!org.eclipse.jetty.*</Import-Package>
|
|
|
|
<Fragment-Host>system.bundle;extension:=framework</Fragment-Host>
|
|
|
|
</instructions>
|
2014-03-20 07:09:54 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|