2016-01-20 06:16:53 +00:00
|
|
|
<?xml version="1.0"?>
|
2016-02-03 10:20:22 +00:00
|
|
|
<!--
|
|
|
|
~ 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.
|
|
|
|
-->
|
|
|
|
|
2016-01-20 06:16:53 +00:00
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian-tests</artifactId>
|
2023-03-03 10:11:44 +00:00
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
2016-01-20 06:16:53 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>integration-arquillian-tests-other</artifactId>
|
|
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>Other Tests Modules</name>
|
2021-10-12 11:05:31 +00:00
|
|
|
|
2016-01-20 06:16:53 +00:00
|
|
|
<description>Test modules that depend on the Base TestSuite.
|
|
|
|
This POM contains common configuration for submodules.</description>
|
|
|
|
|
2023-04-19 15:42:34 +00:00
|
|
|
<properties>
|
|
|
|
<app.server>undertow</app.server>
|
|
|
|
</properties>
|
|
|
|
|
2016-01-20 06:16:53 +00:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-test-resources</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian-tests-base</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2018-09-24 08:49:47 +00:00
|
|
|
<classifier>tests</classifier>
|
2020-09-02 13:29:07 +00:00
|
|
|
<includes>arquillian.xml,wildfly-config.xml,keycloak-add-user.json,test-constants.properties,kerberos/*,keystore/*,password-blacklists/*,log4j.properties,vault/*</includes>
|
2016-01-20 06:16:53 +00:00
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2016-08-23 21:22:25 +00:00
|
|
|
</plugin>
|
2016-01-20 06:16:53 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-admin-user-json-file</id>
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2017-10-11 10:20:06 +00:00
|
|
|
<skip>${skip.add.user.json}</skip>
|
2016-03-24 10:24:21 +00:00
|
|
|
<outputDirectory>${auth.server.config.dir}</outputDirectory>
|
2016-01-20 06:16:53 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${project.build.directory}/dependency</directory>
|
|
|
|
<includes>
|
|
|
|
<include>keycloak-add-user.json</include>
|
|
|
|
</includes>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>dependency-on-base-testsuite</id>
|
|
|
|
<activation>
|
|
|
|
<!-- activated for all submodules with /src -->
|
|
|
|
<file>
|
|
|
|
<exists>src</exists>
|
|
|
|
</file>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian-tests-base</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian-tests-base</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2021-12-07 09:52:40 +00:00
|
|
|
<profile>
|
|
|
|
<id>adapters</id>
|
|
|
|
<modules>
|
|
|
|
<module>adapters</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2016-01-26 09:05:12 +00:00
|
|
|
<profile>
|
|
|
|
<id>mod_auth_mellon</id>
|
|
|
|
<modules>
|
|
|
|
<module>mod_auth_mellon</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2016-02-26 01:24:20 +00:00
|
|
|
<profile>
|
|
|
|
<id>jpa-performance</id>
|
|
|
|
<modules>
|
|
|
|
<module>jpa-performance</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2021-12-07 09:52:40 +00:00
|
|
|
<profile>
|
|
|
|
<id>sssd</id>
|
|
|
|
<modules>
|
|
|
|
<module>sssd</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2019-04-25 08:51:10 +00:00
|
|
|
<profile>
|
|
|
|
<id>springboot</id>
|
|
|
|
<modules>
|
|
|
|
<module>springboot-tests</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2021-09-08 13:35:41 +00:00
|
|
|
<profile>
|
|
|
|
<id>webauthn</id>
|
|
|
|
<modules>
|
|
|
|
<module>webauthn</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2016-01-20 06:16:53 +00:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|