2016-03-24 15:08:36 +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 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-servers-auth-server-services</artifactId>
|
2023-03-03 10:11:44 +00:00
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
2016-03-24 15:08:36 +00:00
|
|
|
</parent>
|
|
|
|
|
2016-04-20 03:10:40 +00:00
|
|
|
<artifactId>integration-arquillian-testsuite-providers</artifactId>
|
|
|
|
<name>Auth Server Services - Testsuite Providers</name>
|
2016-03-24 15:08:36 +00:00
|
|
|
|
2018-02-26 09:49:05 +00:00
|
|
|
<properties>
|
|
|
|
<js-adapter.version>${project.version}</js-adapter.version>
|
2018-04-06 09:47:10 +00:00
|
|
|
<js-adapter.file.path>${project.basedir}/target/classes/javascript</js-adapter.file.path>
|
2018-02-26 09:49:05 +00:00
|
|
|
</properties>
|
|
|
|
|
2016-03-24 15:08:36 +00:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- Keycloak deps for tests -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-dependencies-server-all</artifactId>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-services</artifactId>
|
|
|
|
</dependency>
|
2022-05-26 13:48:12 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-model-legacy-services</artifactId>
|
|
|
|
</dependency>
|
2017-01-26 14:37:52 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.core</groupId>
|
|
|
|
<artifactId>wildfly-controller</artifactId>
|
|
|
|
</dependency>
|
2022-04-20 12:25:16 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian-testsuite-providers-deployment</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2022-08-29 14:12:28 +00:00
|
|
|
<dependency>
|
2023-01-09 09:57:57 +00:00
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
<artifactId>resteasy-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.persistence</groupId>
|
|
|
|
<artifactId>jakarta.persistence-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-core-jakarta</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-client-hotrod-jakarta</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-08-29 14:12:28 +00:00
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-tasks-api</artifactId>
|
|
|
|
<version>${infinispan.version}</version>
|
2023-02-10 09:51:52 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2022-08-29 14:12:28 +00:00
|
|
|
</dependency>
|
2016-03-24 15:08:36 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2018-02-26 09:49:05 +00:00
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-javascript-adapter</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2023-03-03 12:56:53 +00:00
|
|
|
<artifactId>keycloak-js-adapter-jar</artifactId>
|
2018-02-26 09:49:05 +00:00
|
|
|
<version>${js-adapter.version}</version>
|
|
|
|
<type>jar</type>
|
2018-04-06 09:47:10 +00:00
|
|
|
<outputDirectory>${js-adapter.file.path}</outputDirectory>
|
2018-02-26 09:49:05 +00:00
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
2018-05-07 18:47:56 +00:00
|
|
|
<includes>keycloak.js</includes>
|
2018-02-26 09:49:05 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2016-03-24 15:08:36 +00:00
|
|
|
</build>
|
|
|
|
</project>
|