* Issue #2015 add osgi headers for alpn conscrypt Signed-off-by: Jan Bartel <janb@webtide.com>
This commit is contained in:
parent
f21fb5d6d9
commit
8665348258
|
@ -14,8 +14,7 @@
|
||||||
<name>Jetty :: ALPN :: Conscrypt Client Implementation</name>
|
<name>Jetty :: ALPN :: Conscrypt Client Implementation</name>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<bundle-symbolic-name>${project.groupId}.alpn.java.client</bundle-symbolic-name>
|
<bundle-symbolic-name>${project.groupId}.alpn.conscrypt.client</bundle-symbolic-name>
|
||||||
<conscrypt.version>1.0.0.RC11</conscrypt.version>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -36,4 +35,24 @@
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.felix</groupId>
|
||||||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
<configuration>
|
||||||
|
<instructions>
|
||||||
|
<Bundle-Description>Conscrypt Client ALPN</Bundle-Description>
|
||||||
|
<Import-Package>org.conscrypt;version="${conscrypt.version}",*</Import-Package>
|
||||||
|
<Export-Package>*</Export-Package>
|
||||||
|
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability>
|
||||||
|
<Provide-Capability>osgi.serviceloader; osgi.serviceloader=org.eclipse.jetty.io.ssl.ALPNProcessor$Client</Provide-Capability>
|
||||||
|
<_nouses>true</_nouses>
|
||||||
|
</instructions>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<bundle-symbolic-name>${project.groupId}.alpn.conscrypt.server</bundle-symbolic-name>
|
<bundle-symbolic-name>${project.groupId}.alpn.conscrypt.server</bundle-symbolic-name>
|
||||||
<conscrypt.version>1.0.0.RC11</conscrypt.version>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -40,4 +39,22 @@
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.felix</groupId>
|
||||||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
<configuration>
|
||||||
|
<instructions>
|
||||||
|
<Bundle-Description>Conscrypt ALPN</Bundle-Description>
|
||||||
|
<Import-Package>org.conscrypt;version="${conscrypt.version}",*</Import-Package>
|
||||||
|
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability>
|
||||||
|
<Provide-Capability>osgi.serviceloader;osgi.serviceloader=org.eclipse.jetty.io.ssl.ALPNProcessor$Server</Provide-Capability>
|
||||||
|
<_nouses>true</_nouses>
|
||||||
|
</instructions>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
<artifactId>jetty-alpn-parent</artifactId>
|
<artifactId>jetty-alpn-parent</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>Jetty :: ALPN :: Parent</name>
|
<name>Jetty :: ALPN :: Parent</name>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>jetty-alpn-server</module>
|
<module>jetty-alpn-server</module>
|
||||||
<module>jetty-alpn-client</module>
|
<module>jetty-alpn-client</module>
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -23,6 +23,7 @@
|
||||||
<jsp.version>8.5.23</jsp.version>
|
<jsp.version>8.5.23</jsp.version>
|
||||||
<!-- default values are unsupported, but required to be defined for reactor sanity reasons -->
|
<!-- default values are unsupported, but required to be defined for reactor sanity reasons -->
|
||||||
<alpn.version>undefined</alpn.version>
|
<alpn.version>undefined</alpn.version>
|
||||||
|
<conscrypt.version>1.0.0.RC11</conscrypt.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
|
|
Loading…
Reference in New Issue