2023-10-11 21:51:36 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-05-03 09:52:44 -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">
|
2023-10-11 21:51:36 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-05-03 09:52:44 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
|
|
<artifactId>jetty-ee10</artifactId>
|
2024-03-29 16:20:11 -04:00
|
|
|
<version>12.0.9-SNAPSHOT</version>
|
2022-05-03 09:52:44 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>jetty-ee10-jaspi</artifactId>
|
2023-01-27 13:09:06 -05:00
|
|
|
<name>EE10 :: JASPI</name>
|
2022-05-03 09:52:44 -04:00
|
|
|
<description>Jetty security infrastructure</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.security.jaspi</bundle-symbolic-name>
|
2023-06-19 20:54:16 -04:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.ee10.security.jaspi.*</spotbugs.onlyAnalyze>
|
2022-05-03 09:52:44 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-05-09 00:57:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.authentication</groupId>
|
|
|
|
<artifactId>jakarta.authentication-api</artifactId>
|
|
|
|
</dependency>
|
2022-05-03 09:52:44 -04:00
|
|
|
<dependency>
|
2022-06-21 20:32:54 -04:00
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
2022-05-03 09:52:44 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
|
|
<artifactId>jetty-ee10-servlet</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.activation</groupId>
|
|
|
|
<artifactId>jakarta.activation-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-05-03 09:52:44 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2023-10-11 21:51:36 -04:00
|
|
|
|
|
|
|
<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>
|
|
|
|
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability>
|
|
|
|
<Provide-Capability>osgi.serviceloader;osgi.serviceloader=org.eclipse.jetty.ee10.servlet.security.Authenticator$Factory</Provide-Capability>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-05-03 09:52:44 -04:00
|
|
|
</project>
|