Keycloak
52 строки · 1.9 Кб
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">3<parent>4<artifactId>keycloak-model-pom</artifactId>5<groupId>org.keycloak</groupId>6<version>999.0.0-SNAPSHOT</version>7</parent>8<modelVersion>4.0.0</modelVersion>9
10<artifactId>keycloak-model-storage-services</artifactId>11<name>Keycloak Database Support - REST services</name>12<description/>13
14<dependencies>15<dependency>16<groupId>org.keycloak</groupId>17<artifactId>keycloak-services</artifactId>18</dependency>19<dependency>20<groupId>org.keycloak</groupId>21<artifactId>keycloak-model-storage-private</artifactId>22</dependency>23<dependency>24<groupId>org.keycloak</groupId>25<artifactId>keycloak-ldap-federation</artifactId>26</dependency>27<dependency>28<groupId>org.jboss.logging</groupId>29<artifactId>jboss-logging</artifactId>30</dependency>31<dependency>32<groupId>junit</groupId>33<artifactId>junit</artifactId>34<scope>test</scope>35</dependency>36<dependency>37<groupId>org.jboss.logging</groupId>38<artifactId>jboss-logging-annotations</artifactId>39<scope>provided</scope>40</dependency>41<dependency>42<groupId>org.hamcrest</groupId>43<artifactId>hamcrest</artifactId>44<scope>test</scope>45</dependency>46<dependency>47<groupId>io.quarkus.resteasy.reactive</groupId>48<artifactId>resteasy-reactive-common</artifactId>49</dependency>50</dependencies>51
52</project>53