2021-05-07 23:50:44 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-09 23:29:14 +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/xsd/maven-4.0.0.xsd">
|
2021-05-07 23:50:44 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>de.sventorben.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-restrict-client-auth</artifactId>
|
2023-07-12 00:34:44 +02:00
|
|
|
<version>22.0.1-SNAPSHOT</version>
|
2021-05-07 23:50:44 +02:00
|
|
|
|
|
|
|
<name>Keycloak: Authenticator - Restrict client authentication</name>
|
|
|
|
<description>A Keycloak authenticator to restrict authentication on clients</description>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<inceptionYear>2021</inceptionYear>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>sventorben</id>
|
|
|
|
<name>Sven-Torben Janus</name>
|
|
|
|
<email>sven-torben@sven-torben.de</email>
|
|
|
|
<url>https://sventorben.de</url>
|
|
|
|
<timezone>Europe/Berlin</timezone>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:ssh://git@github.com:sventorben/keycloak-restrict-client-auth.git</connection>
|
2021-05-09 19:38:02 +02:00
|
|
|
<developerConnection>scm:git:https://github.com/sventorben/keycloak-restrict-client-auth.git
|
2021-05-08 01:16:07 +02:00
|
|
|
</developerConnection>
|
2021-05-07 23:50:44 +02:00
|
|
|
<url>https://github.com/sventorben/keycloak-restrict-client-auth.git</url>
|
2023-07-12 00:34:44 +02:00
|
|
|
<tag>HEAD</tag>
|
2021-05-07 23:50:44 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<url>https://github.com/sventorben/keycloak-restrict-client-auth/issues</url>
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
</issueManagement>
|
|
|
|
|
2021-05-08 00:43:55 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>github</id>
|
|
|
|
<name>GitHub sventorben Apache Maven Packages</name>
|
2021-05-08 00:58:55 +02:00
|
|
|
<url>https://maven.pkg.github.com/sventorben/keycloak-restrict-client-auth</url>
|
2021-05-08 00:43:55 +02:00
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2021-05-07 23:50:44 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2023-06-29 22:21:37 +02:00
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<maven.compiler.release>17</maven.compiler.release>
|
2021-05-07 23:50:44 +02:00
|
|
|
|
2021-10-29 09:34:11 +02:00
|
|
|
<!-- For compilation -->
|
2023-10-06 18:29:52 +02:00
|
|
|
<version.keycloak>22.0.4</version.keycloak>
|
2021-05-07 23:50:44 +02:00
|
|
|
|
2021-10-29 09:34:11 +02:00
|
|
|
<!-- For compatibility tests -->
|
|
|
|
<keycloak.version>${version.keycloak}</keycloak.version>
|
2022-02-15 19:02:50 +01:00
|
|
|
<keycloak.dist>quarkus</keycloak.dist>
|
2021-10-29 09:34:11 +02:00
|
|
|
|
2023-10-09 15:00:30 +02:00
|
|
|
<version.mockito>5.6.0</version.mockito>
|
2021-05-07 23:50:44 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2023-06-07 14:58:09 +02:00
|
|
|
<version>3.1.2</version>
|
2021-09-19 19:49:21 +02:00
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<org.jboss.logging.provider>log4j2</org.jboss.logging.provider>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
<excludes>
|
2021-10-13 23:05:10 +02:00
|
|
|
<exclude />
|
2021-09-19 19:49:21 +02:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
2021-05-07 23:50:44 +02:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
2023-06-07 14:58:16 +02:00
|
|
|
<version>3.1.2</version>
|
2021-09-19 19:49:21 +02:00
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<org.jboss.logging.provider>log4j2</org.jboss.logging.provider>
|
2021-10-29 09:34:11 +02:00
|
|
|
<keycloak.version>${keycloak.version}</keycloak.version>
|
|
|
|
<keycloak.dist>${keycloak.dist}</keycloak.dist>
|
2021-09-19 19:49:21 +02:00
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
2021-05-07 23:50:44 +02:00
|
|
|
</plugin>
|
2021-05-09 19:15:45 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2023-06-05 14:59:50 +02:00
|
|
|
<version>3.0.1</version>
|
2021-05-09 19:15:45 +02:00
|
|
|
<configuration>
|
2021-05-09 23:27:59 +02:00
|
|
|
<scmCommentPrefix>chore(release):</scmCommentPrefix>
|
2021-05-09 19:15:45 +02:00
|
|
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-05-07 23:50:44 +02:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2022-09-16 14:34:01 +02:00
|
|
|
<version>3.3.0</version>
|
2021-05-07 23:50:44 +02:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
2021-09-19 19:49:21 +02:00
|
|
|
<manifestFile>src${file.separator}main${file.separator}resources${file.separator}META-INF${file.separator}MANIFEST.MF</manifestFile>
|
2021-05-07 23:50:44 +02:00
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-05-08 01:16:07 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2023-05-22 14:59:03 +02:00
|
|
|
<version>3.3.0</version>
|
2021-05-08 01:16:07 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>deploy</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
2023-03-24 13:58:29 +01:00
|
|
|
<version>3.1.1</version>
|
2021-05-08 01:16:07 +02:00
|
|
|
</plugin>
|
2021-05-07 23:50:44 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2022-07-27 22:06:13 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-parent</artifactId>
|
|
|
|
<version>${version.keycloak}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2021-05-07 23:50:44 +02:00
|
|
|
<!-- Tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit</groupId>
|
|
|
|
<artifactId>junit-bom</artifactId>
|
2023-07-24 14:44:02 +02:00
|
|
|
<version>5.10.0</version>
|
2021-05-07 23:50:44 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2021-10-29 09:34:11 +02:00
|
|
|
|
2021-05-07 23:50:44 +02:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Keycloak Extension -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-core</artifactId>
|
|
|
|
<version>${version.keycloak}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-server-spi</artifactId>
|
|
|
|
<version>${version.keycloak}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-server-spi-private</artifactId>
|
|
|
|
<version>${version.keycloak}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-services</artifactId>
|
|
|
|
<version>${version.keycloak}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>${version.mockito}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
<version>${version.mockito}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
2023-01-17 13:03:22 +01:00
|
|
|
<version>3.24.2</version>
|
2021-05-07 23:50:44 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-09-19 19:49:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2023-10-03 14:07:04 +02:00
|
|
|
<version>1.19.1</version>
|
2021-09-19 19:49:21 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-11-02 10:34:28 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.dasniko</groupId>
|
|
|
|
<artifactId>testcontainers-keycloak</artifactId>
|
2023-07-12 00:27:27 +02:00
|
|
|
<version>3.0.0</version>
|
2022-11-02 10:34:28 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-09-19 19:49:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-admin-client</artifactId>
|
|
|
|
<version>${version.keycloak}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- Logging -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2023-02-23 20:24:18 +01:00
|
|
|
<version>2.20.0</version>
|
2021-09-19 19:49:21 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-slf4j18-impl</artifactId>
|
2022-07-04 14:30:38 +02:00
|
|
|
<version>2.18.0</version>
|
2021-09-19 19:49:21 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-05-07 23:50:44 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|