2015-09-18 12:27:28 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<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">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian-tests</artifactId>
|
2015-12-01 18:53:45 +00:00
|
|
|
<version>1.8.0.CR1-SNAPSHOT</version>
|
2015-09-18 12:27:28 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>integration-arquillian-tests-base</artifactId>
|
|
|
|
<name>Base Test Suite</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<exclude.console>-</exclude.console>
|
|
|
|
<exclude.account>-</exclude.account>
|
2015-12-17 23:23:19 +00:00
|
|
|
<exclude.client>-</exclude.client>
|
2016-01-07 17:58:32 +00:00
|
|
|
<exclude.migration>-</exclude.migration>
|
2015-09-18 12:27:28 +00:00
|
|
|
</properties>
|
2015-11-12 09:33:03 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-util-embedded-ldap</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-09-18 12:27:28 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>${exclude.console}</exclude>
|
|
|
|
<exclude>${exclude.account}</exclude>
|
2015-12-17 23:23:19 +00:00
|
|
|
<exclude>${exclude.client}</exclude>
|
2016-01-07 17:58:32 +00:00
|
|
|
<exclude>${exclude.migration}</exclude>
|
2015-09-18 12:27:28 +00:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>no-console</id>
|
|
|
|
<properties>
|
|
|
|
<!-- Exclude all admin console tests. -->
|
|
|
|
<exclude.console>**/console/**/*Test.java</exclude.console>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>no-account</id>
|
|
|
|
<properties>
|
|
|
|
<!-- Exclude all account management tests. -->
|
|
|
|
<exclude.account>**/account/**/*Test.java</exclude.account>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>adapters-only</id>
|
|
|
|
<properties>
|
|
|
|
<exclude.console>**/console/**/*Test.java</exclude.console>
|
|
|
|
<exclude.account>**/account/**/*Test.java</exclude.account>
|
2015-12-17 23:23:19 +00:00
|
|
|
<exclude.client>**/client/**/*Test.java</exclude.client>
|
2016-01-07 17:58:32 +00:00
|
|
|
<exclude.migration>**/migration/**/*Test.java</exclude.migration>
|
2015-09-18 12:27:28 +00:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|