2015-05-26 13:53:54 +00:00
|
|
|
<?xml version="1.0"?>
|
2016-02-03 10:20:22 +00:00
|
|
|
<!--
|
2016-03-24 10:24:21 +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-02-03 10:20:22 +00:00
|
|
|
|
2015-05-26 13:53:54 +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">
|
2016-01-20 06:16:53 +00:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2015-05-26 13:53:54 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2015-09-18 12:27:28 +00:00
|
|
|
<artifactId>keycloak-testsuite-pom</artifactId>
|
2016-09-26 15:01:18 +00:00
|
|
|
<version>2.3.0-SNAPSHOT</version>
|
2015-05-26 13:53:54 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
2015-09-18 12:27:28 +00:00
|
|
|
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2016-01-20 06:16:53 +00:00
|
|
|
|
|
|
|
<name>Keycloak Arquillian Integration TestSuite</name>
|
2016-06-30 12:46:34 +00:00
|
|
|
|
2016-03-24 10:24:21 +00:00
|
|
|
<properties>
|
2016-03-14 11:08:36 +00:00
|
|
|
|
2016-03-24 10:24:21 +00:00
|
|
|
<containers.home>${project.build.directory}/containers</containers.home>
|
|
|
|
<auth.server.java.home>${java.home}</auth.server.java.home>
|
|
|
|
<app.server.java.home>${java.home}</app.server.java.home>
|
2016-03-14 11:08:36 +00:00
|
|
|
|
2016-03-24 10:24:21 +00:00
|
|
|
<!--component versions-->
|
|
|
|
<arquillian-core.version>1.1.11.Final</arquillian-core.version>
|
2016-07-12 09:39:27 +00:00
|
|
|
<selenium.version>2.53.0</selenium.version>
|
2016-03-24 10:24:21 +00:00
|
|
|
<arquillian-drone.version>2.0.0.Beta1</arquillian-drone.version>
|
|
|
|
<arquillian-graphene.version>2.1.0.Alpha3</arquillian-graphene.version>
|
2016-05-23 11:17:20 +00:00
|
|
|
<arquillian-wildfly-container.version>2.0.0.Final</arquillian-wildfly-container.version>
|
2016-03-24 10:24:21 +00:00
|
|
|
<version.shrinkwrap.resolvers>2.2.2</version.shrinkwrap.resolvers>
|
2016-04-12 07:40:57 +00:00
|
|
|
<undertow-embedded.version>1.0.0.Alpha2</undertow-embedded.version>
|
2016-06-30 12:46:34 +00:00
|
|
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
2016-03-24 10:24:21 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.arquillian.selenium</groupId>
|
|
|
|
<artifactId>selenium-bom</artifactId>
|
|
|
|
<version>${selenium.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.arquillian</groupId>
|
|
|
|
<artifactId>arquillian-bom</artifactId>
|
|
|
|
<version>${arquillian-core.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2016-07-18 12:01:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.shrinkwrap.resolver</groupId>
|
|
|
|
<artifactId>shrinkwrap-resolver-impl-maven</artifactId>
|
2016-09-20 11:00:54 +00:00
|
|
|
<version>${version.shrinkwrap.resolvers}</version>
|
2016-07-18 12:01:26 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-03-24 10:24:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.arquillian.extension</groupId>
|
|
|
|
<artifactId>arquillian-drone-bom</artifactId>
|
|
|
|
<version>${arquillian-drone.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-05-23 11:17:20 +00:00
|
|
|
<groupId>org.wildfly.arquillian</groupId>
|
2016-03-24 10:24:21 +00:00
|
|
|
<artifactId>wildfly-arquillian-container-managed</artifactId>
|
|
|
|
<version>${arquillian-wildfly-container.version}</version>
|
2016-03-14 11:08:36 +00:00
|
|
|
</dependency>
|
2016-04-06 07:11:06 +00:00
|
|
|
<dependency>
|
2016-05-23 11:17:20 +00:00
|
|
|
<groupId>org.wildfly.arquillian</groupId>
|
2016-04-06 07:11:06 +00:00
|
|
|
<artifactId>wildfly-arquillian-container-remote</artifactId>
|
|
|
|
<version>${arquillian-wildfly-container.version}</version>
|
|
|
|
</dependency>
|
2016-05-23 11:17:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.arquillian</groupId>
|
|
|
|
<artifactId>wildfly-arquillian-container-domain-managed</artifactId>
|
|
|
|
<version>${arquillian-wildfly-container.version}</version>
|
|
|
|
</dependency>
|
2016-03-24 10:24:21 +00:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2015-09-18 12:27:28 +00:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2016-03-24 14:08:55 +00:00
|
|
|
<configuration>
|
|
|
|
<failIfNoTests>false</failIfNoTests>
|
|
|
|
</configuration>
|
2015-09-18 12:27:28 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>xml-maven-plugin</artifactId>
|
2016-01-04 15:46:47 +00:00
|
|
|
<version>1.0.1</version>
|
2015-09-18 12:27:28 +00:00
|
|
|
</plugin>
|
2016-09-02 11:55:49 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
2015-09-18 12:27:28 +00:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
2016-03-24 10:24:21 +00:00
|
|
|
<modules>
|
2016-04-06 07:11:06 +00:00
|
|
|
<module>test-apps</module>
|
2016-09-01 08:17:08 +00:00
|
|
|
<module>test-utils</module>
|
2016-03-24 10:24:21 +00:00
|
|
|
<module>servers</module>
|
|
|
|
<module>tests</module>
|
|
|
|
</modules>
|
2016-03-14 11:08:36 +00:00
|
|
|
|
2015-05-26 13:53:54 +00:00
|
|
|
</project>
|