All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.maven.org.eclipse.jetty.jetty-alpn-conscrypt-client.pom.xml Maven / Gradle / Ivy

There is a newer version: 2.0.42.rc
Show newest version
<?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/xsd/maven-4.0.0.xsd">

  <parent>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-alpn-parent</artifactId>
    <version>9.4.11.v20180605</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <artifactId>jetty-alpn-conscrypt-client</artifactId>
  <name>Jetty :: ALPN :: Conscrypt Client Implementation</name>

  <properties>
    <bundle-symbolic-name>${project.groupId}.alpn.conscrypt.client</bundle-symbolic-name>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.conscrypt</groupId>
      <artifactId>conscrypt-openjdk-uber</artifactId>
      <version>${conscrypt.version}</version>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-alpn-client</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jetty.http2</groupId>
      <artifactId>http2-client</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
  </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)";resolution:=optional</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>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy