2017-07-14 05:01:54 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
~ Copyright 2016 Red Hat, Inc. and/or its affiliates
|
|
|
|
~ and other contributors as indicated by the @author tags.
|
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<artifactId>keycloak-testsuite-pom</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2023-03-03 10:11:44 +00:00
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
2017-07-14 05:01:54 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>keycloak-testsuite-utils</artifactId>
|
|
|
|
<name>Keycloak TestSuite Utils</name>
|
|
|
|
<description />
|
|
|
|
|
|
|
|
<properties>
|
2018-07-31 08:17:07 +00:00
|
|
|
<keycloak.additionalClasspathElement>NON_EXISTENT_PATH_OVERRIDE_ON_COMMAND_LINE</keycloak.additionalClasspathElement>
|
2017-07-14 05:01:54 +00:00
|
|
|
</properties>
|
2017-08-30 05:59:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2023-01-19 12:10:19 +00:00
|
|
|
<dependency>
|
2023-03-24 11:23:37 +00:00
|
|
|
<groupId>jakarta.mail</groupId>
|
|
|
|
<artifactId>jakarta.mail-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.angus</groupId>
|
|
|
|
<artifactId>angus-mail</artifactId>
|
2023-01-06 15:49:04 +00:00
|
|
|
</dependency>
|
2017-08-30 05:59:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2023-07-20 09:57:18 +00:00
|
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2023-07-20 09:57:18 +00:00
|
|
|
<artifactId>bcpkix-jdk18on</artifactId>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-dependencies-server-all</artifactId>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
2024-03-21 14:28:34 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-services</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
2023-01-19 12:06:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-rest-admin-ui-ext</artifactId>
|
|
|
|
</dependency>
|
2017-08-30 05:59:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2024-06-19 17:52:07 +00:00
|
|
|
<artifactId>keycloak-admin-client-tests</artifactId>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
2023-04-15 20:58:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-admin-ui</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-account-ui</artifactId>
|
|
|
|
</dependency>
|
2017-08-30 05:59:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2023-05-05 11:57:45 +00:00
|
|
|
<artifactId>slf4j-reload4j</artifactId>
|
2017-08-30 05:59:47 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-02-15 20:00:46 +00:00
|
|
|
<groupId>org.dom4j</groupId>
|
2017-08-30 05:59:47 +00:00
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-01-04 15:25:12 +00:00
|
|
|
<groupId>jakarta.ws.rs</groupId>
|
|
|
|
<artifactId>jakarta.ws.rs-api</artifactId>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-01-04 15:25:12 +00:00
|
|
|
<groupId>jakarta.transaction</groupId>
|
|
|
|
<artifactId>jakarta.transaction-api</artifactId>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
2022-03-24 13:21:36 +00:00
|
|
|
<artifactId>resteasy-core</artifactId>
|
2017-08-30 05:59:47 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
<artifactId>resteasy-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
<artifactId>resteasy-undertow</artifactId>
|
2023-01-06 19:03:43 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.undertow</groupId>
|
|
|
|
<artifactId>undertow-servlet-jakarta</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
<artifactId>resteasy-multipart-provider</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
<artifactId>resteasy-jackson2-provider</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>javase</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-server-spi-private</artifactId>
|
|
|
|
</dependency>
|
2022-06-29 05:17:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>${keycloak.crypto.artifactId}</artifactId>
|
|
|
|
</dependency>
|
2017-08-30 05:59:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-ldap-federation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-kerberos-federation</artifactId>
|
|
|
|
</dependency>
|
2023-01-09 09:57:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.undertow</groupId>
|
|
|
|
<artifactId>undertow-servlet</artifactId>
|
|
|
|
<version>${undertow-jakarta.version}</version>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-saml-adapter-api-public</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-saml-adapter-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2024-07-17 10:11:26 +00:00
|
|
|
<artifactId>keycloak-authz-client-tests</artifactId>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
<!-- Dependency on services from integration-arquillian -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian-testsuite-providers</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.icegreen</groupId>
|
|
|
|
<artifactId>greenmail</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
2024-04-13 17:38:33 +00:00
|
|
|
<artifactId>infinispan-core</artifactId>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-cachestore-remote</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Apache DS -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-util-embedded-ldap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2023-08-29 07:51:12 +00:00
|
|
|
<groupId>${ee.maven.groupId}</groupId>
|
2017-08-30 05:59:47 +00:00
|
|
|
<artifactId>wildfly-undertow</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2024-02-07 16:57:23 +00:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2024-02-02 15:57:23 +00:00
|
|
|
<version>${mysql-jdbc.version}</version>
|
2017-08-30 05:59:47 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2022-11-29 23:04:56 +00:00
|
|
|
<version>${postgresql-jdbc.version}</version>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-11-18 16:50:21 +00:00
|
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
|
|
|
<artifactId>ojdbc11</artifactId>
|
2022-11-29 23:04:56 +00:00
|
|
|
<version>${oracle-jdbc.version}</version>
|
2022-11-18 16:50:21 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-08-30 05:59:47 +00:00
|
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
2022-11-29 23:04:56 +00:00
|
|
|
<version>${mariadb-jdbc.version}</version>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependency>
|
2021-08-30 07:32:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
|
|
<artifactId>mssql-jdbc</artifactId>
|
2022-11-29 23:04:56 +00:00
|
|
|
<version>${mssql-jdbc.version}</version>
|
2021-08-30 07:32:41 +00:00
|
|
|
</dependency>
|
2017-08-30 05:59:47 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<profiles>
|
2022-06-06 19:04:31 +00:00
|
|
|
|
2017-08-30 05:59:47 +00:00
|
|
|
<profile>
|
|
|
|
<id>keycloak-server</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.keycloak.testsuite.KeycloakServer</mainClass>
|
|
|
|
<classpathScope>test</classpathScope>
|
2018-07-31 08:17:07 +00:00
|
|
|
<additionalClasspathElements>
|
|
|
|
<additionalClasspathElement>${keycloak.additionalClasspathElement}</additionalClasspathElement>
|
|
|
|
</additionalClasspathElements>
|
2017-08-30 05:59:47 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>mail-server</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.keycloak.testsuite.MailServer</mainClass>
|
|
|
|
<classpathScope>test</classpathScope>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>totp</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.keycloak.testsuite.TotpGenerator</mainClass>
|
|
|
|
<classpathScope>test</classpathScope>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2018-07-26 09:28:42 +00:00
|
|
|
<profile>
|
|
|
|
<id>ldap</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.keycloak.util.ldap.LDAPEmbeddedServer</mainClass>
|
|
|
|
<classpathScope>test</classpathScope>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>kerberos</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-07-02 14:12:28 +00:00
|
|
|
<mainClass>org.keycloak.testsuite.KerberosEmbeddedServer</mainClass>
|
2018-07-26 09:28:42 +00:00
|
|
|
<classpathScope>test</classpathScope>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2017-08-30 05:59:47 +00:00
|
|
|
</profiles>
|
2017-07-14 05:01:54 +00:00
|
|
|
</project>
|