2009-03-24 17:07:27 -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>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9</artifactId>
|
|
|
|
<version>12.0.0-SNAPSHOT</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
2018-08-28 07:43:45 -04:00
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-05-03 09:50:54 -04:00
|
|
|
<artifactId>jetty-ee9-jaspi</artifactId>
|
|
|
|
<name>EE9 :: Jetty :: JASPI Security</name>
|
2009-03-24 17:07:27 -04:00
|
|
|
<description>Jetty security infrastructure</description>
|
2018-08-28 07:43:45 -04:00
|
|
|
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
2014-08-15 05:35:49 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.security.jaspi</bundle-symbolic-name>
|
2020-12-10 20:47:26 -05:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.jaspi.*</spotbugs.onlyAnalyze>
|
2010-03-30 14:45:31 -04:00
|
|
|
</properties>
|
2018-08-28 07:43:45 -04:00
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2019-11-06 18:53:25 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
2022-05-06 17:24:40 -04:00
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability>
|
|
|
|
<Provide-Capability>osgi.serviceloader;osgi.serviceloader=org.eclipse.jetty.security.Authenticator$Factory</Provide-Capability>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
2019-11-06 18:53:25 -05:00
|
|
|
</plugin>
|
2009-03-24 17:07:27 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-08-28 07:43:45 -04:00
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
<dependencies>
|
2020-04-16 16:54:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
<dependency>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9-security</artifactId>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependency>
|
2020-03-19 18:46:41 -04: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-03-19 18:46:41 -04:00
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
<dependency>
|
2012-09-20 14:42:21 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2009-03-24 17:07:27 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-04-15 08:39:05 -04:00
|
|
|
<dependency>
|
2021-08-18 03:28:28 -04:00
|
|
|
<groupId>jakarta.authentication</groupId>
|
|
|
|
<artifactId>jakarta.authentication-api</artifactId>
|
2009-04-15 08:39:05 -04:00
|
|
|
</dependency>
|
2018-08-28 07:43:45 -04:00
|
|
|
<dependency>
|
2021-08-18 03:28:28 -04:00
|
|
|
<groupId>jakarta.activation</groupId>
|
|
|
|
<artifactId>jakarta.activation-api</artifactId>
|
2014-12-12 10:47:30 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|