2014-03-31 17:18:37 -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</groupId>
|
2014-04-01 16:09:49 -04:00
|
|
|
<artifactId>jetty-alpn-parent</artifactId>
|
2022-02-07 06:02:02 -05:00
|
|
|
<version>10.0.9-SNAPSHOT</version>
|
2014-03-31 17:18:37 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-alpn-client</artifactId>
|
2014-06-16 06:44:12 -04:00
|
|
|
<name>Jetty :: ALPN :: Client</name>
|
2014-03-31 17:18:37 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.alpn.client</bundle-symbolic-name>
|
2020-12-10 20:47:26 -05:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.alpn.*</spotbugs.onlyAnalyze>
|
2014-03-31 17:18:37 -04:00
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2021-06-10 10:04:50 -04:00
|
|
|
<Import-Package>${osgi.slf4j.import.packages},org.eclipse.jetty.alpn;resolution:=optional,*</Import-Package>
|
2019-06-24 11:42:39 -04:00
|
|
|
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.processor)";resolution:=optional, osgi.serviceloader; filter:="(osgi.serviceloader=org.eclipse.jetty.io.ssl.ALPNProcessor$Client)";resolution:=optional;cardinality:=multiple</Require-Capability>
|
2014-03-31 17:18:37 -04:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!-- always include the sources to be able to prepare the eclipse-jetty-SDK feature
|
|
|
|
with a snapshot. -->
|
|
|
|
<plugin>
|
2019-06-24 11:42:39 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2014-03-31 17:18:37 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-io</artifactId>
|
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-03-20 12:12:08 -04:00
|
|
|
<scope>test</scope>
|
2020-02-18 11:40:20 -05:00
|
|
|
</dependency>
|
2014-03-31 17:18:37 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|