jetty-osgi-alpn
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.jetty.osgi</groupId> <artifactId>jetty-osgi-alpn</artifactId> <version>11.0.26</version> </dependency>
<?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"> <!-- TODO: review if this module is still needed --> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.eclipse.jetty.osgi</groupId> <artifactId>jetty-osgi-project</artifactId> <version>11.0.26</version> </parent> <artifactId>jetty-osgi-alpn</artifactId> <packaging>jar</packaging> <name>Jetty :: OSGi ALPN Fragment</name> <properties> <bundle-symbolic-name>${project.groupId}.alpn.fragment</bundle-symbolic-name> </properties> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <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> </configuration> </plugin> </plugins> </build> </project>