Keycloak
45 строк · 1.7 Кб
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"3xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">4
5<modelVersion>4.0.0</modelVersion>6<parent>7<artifactId>keycloak-misc-parent</artifactId>8<groupId>org.keycloak</groupId>9<version>999.0.0-SNAPSHOT</version>10</parent>11<groupId>org.keycloak</groupId>12<artifactId>keycloak-test-helper</artifactId>13<name>keycloak-test-helper</name>14<description>Helper library to test application using Keycloak.</description>15<packaging>jar</packaging>16<dependencies>17<dependency>18<groupId>org.keycloak</groupId>19<artifactId>keycloak-client-registration-api</artifactId>20</dependency>21<dependency>22<groupId>org.keycloak</groupId>23<artifactId>keycloak-admin-client</artifactId>24</dependency>25<dependency>26<groupId>org.jboss.resteasy</groupId>27<artifactId>resteasy-client</artifactId>28<version>${resteasy.version}</version>29</dependency>30<dependency>31<groupId>org.jboss.resteasy</groupId>32<artifactId>resteasy-jackson2-provider</artifactId>33<version>${resteasy.version}</version>34</dependency>35<dependency>36<groupId>org.seleniumhq.selenium</groupId>37<artifactId>selenium-java</artifactId>38<scope>provided</scope>39</dependency>40<dependency>41<groupId>org.keycloak</groupId>42<artifactId>keycloak-services</artifactId>43</dependency>44</dependencies>45</project>46