2019-06-24 17:42:39 +02: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">
|
2009-03-24 21:07:27 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2021-05-21 17:07:46 +02:00
|
|
|
<version>10.0.4-SNAPSHOT</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
</parent>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-security</artifactId>
|
|
|
|
<name>Jetty :: Security</name>
|
|
|
|
<description>Jetty security infrastructure</description>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2010-03-30 18:45:31 +00:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.security</bundle-symbolic-name>
|
2020-12-11 11:47:26 +10:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.security.*</spotbugs.onlyAnalyze>
|
2010-03-30 18:45:31 +00:00
|
|
|
</properties>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2019-11-07 10:53:25 +11:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Require-Capability>osgi.serviceloader; filter:="(osgi.serviceloader=org.eclipse.jetty.security.Authenticator$Factory)";resolution:=optional;cardinality:=multiple, osgi.extender; filter:="(osgi.extender=osgi.serviceloader.processor)";resolution:=optional</Require-Capability>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2009-03-24 21:07:27 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2020-02-18 10:40:20 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2020-02-18 10:40:20 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-03-20 11:12:08 -05:00
|
|
|
<scope>test</scope>
|
2020-02-18 10:40:20 -06:00
|
|
|
</dependency>
|
2018-09-04 19:07:17 -05:00
|
|
|
<dependency>
|
2018-11-22 12:37:35 +01:00
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>jetty-http-tools</artifactId>
|
2018-09-04 19:07:17 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-24 21:07:27 +00:00
|
|
|
<dependency>
|
2012-08-02 14:55:26 +10:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2009-03-24 21:07:27 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
</project>
|