2023-10-11 21:51:36 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-07-26 05:26:34 -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-07-26 05:26:34 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.ee8</groupId>
|
|
|
|
<artifactId>jetty-ee8</artifactId>
|
2024-04-26 08:42:57 -04:00
|
|
|
<version>12.1.0-SNAPSHOT</version>
|
2022-07-26 05:26:34 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>jetty-ee8-openid</artifactId>
|
2023-01-27 13:09:06 -05:00
|
|
|
<name>EE8 :: OpenID</name>
|
2022-07-26 05:26:34 -04:00
|
|
|
<description>Jetty OpenID Connect infrastructure</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.openid</bundle-symbolic-name>
|
2023-10-11 21:51:36 -04:00
|
|
|
<ee9.module>jetty-ee9-openid</ee9.module>
|
2023-06-19 20:54:16 -04:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.ee8.security.openid.*</spotbugs.onlyAnalyze>
|
2022-07-26 05:26:34 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>jetty-client</artifactId>
|
2022-07-26 05:26:34 -04:00
|
|
|
</dependency>
|
2023-05-02 09:35:49 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-openid</artifactId>
|
|
|
|
</dependency>
|
2022-07-26 05:26:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>jetty-server</artifactId>
|
2022-07-26 05:26:34 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util-ajax</artifactId>
|
|
|
|
</dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.ee8</groupId>
|
|
|
|
<artifactId>jetty-ee8-security</artifactId>
|
|
|
|
</dependency>
|
2022-07-26 05:26:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.ee8</groupId>
|
|
|
|
<artifactId>jetty-ee8-servlet</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2024-08-25 21:48:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
2024-08-27 00:39:47 -04:00
|
|
|
<artifactId>jetty-test-common</artifactId>
|
2024-08-25 21:48:10 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-07-26 05:26:34 -04:00
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-07-26 05:26:34 -04:00
|
|
|
</project>
|