pom.xml

179 lines | 6.631 kB Blame History Raw Download
<?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 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>
        <version>4.8.0.Final</version>
    </parent>

    <artifactId>integration-arquillian-tests-other</artifactId>

    <packaging>pom</packaging>

    <name>Other Tests Modules</name>
    
    <description>Test modules that depend on the Base TestSuite.
        This POM contains common configuration for submodules.</description>

    <modules>
        <module>adapters</module>
        <module>sssd</module>
        <module>springboot-tests</module>
    </modules>

    <properties>
        <skip.unpack.test.resources>false</skip.unpack.test.resources>
    </properties>

    <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>
                                <skip>${skip.unpack.test.resources}</skip>
                                <artifactItems>
                                    <artifactItem>
                                        <groupId>org.keycloak.testsuite</groupId>
                                        <artifactId>integration-arquillian-tests-base</artifactId>
                                        <version>${project.version}</version>
                                        <classifier>tests</classifier>
                                        <includes>arquillian.xml,keycloak-add-user.json,test-constants.properties,kerberos/*,keystore/keycloak.truststore,password-blacklists/*,log4j.properties</includes>
                                    </artifactItem>
                                </artifactItems>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
                <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>
                                <skip>${skip.add.user.json}</skip>
                                <outputDirectory>${auth.server.config.dir}</outputDirectory>
                                <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>
        <profile>
            <id>clean-start</id>
            <modules>
                <module>clean-start</module>
            </modules>
        </profile>
        <profile>
            <id>console-ui-tests</id>
            <modules>
                <module>console</module>
            </modules>
        </profile>
        <profile>
            <id>mod_auth_mellon</id>
            <modules>
                <module>mod_auth_mellon</module>
            </modules>
        </profile>
        <profile>
            <id>jpa-performance</id>
            <modules>
                <module>jpa-performance</module>
            </modules>
        </profile>
        <profile>
            <id>nodejs-adapter-tests</id>
            <modules>
                <module>nodejs_adapter</module>
            </modules>
        </profile>
        <profile>
            <id>server-config-migration</id>
            <modules>
                <module>server-config-migration</module>
            </modules>
        </profile>
        <profile>
            <id>welcome-page</id>
            <modules>
                <module>welcome-page</module>
            </modules>
        </profile>
        <profile>
            <id>base-ui</id>
            <modules>
                <module>base-ui</module>
            </modules>
        </profile>
    </profiles>

</project>