Keycloak
59 строк · 2.3 Кб
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-private</artifactId>11<name>Keycloak Database Support - Private classes</name>12<description/>13
14<dependencies>15<dependency>16<groupId>org.keycloak</groupId>17<artifactId>keycloak-core</artifactId>18</dependency>19<dependency>20<groupId>org.keycloak</groupId>21<artifactId>keycloak-server-spi</artifactId>22</dependency>23<dependency>24<groupId>org.keycloak</groupId>25<artifactId>keycloak-server-spi-private</artifactId>26</dependency>27<dependency>28<groupId>org.keycloak</groupId>29<artifactId>keycloak-model-storage</artifactId>30</dependency>31<dependency>32<!-- needed for LegacyExportImportManager that is calling ValidationUtil.validateClient (which is in server-spi-private) might throw a BadRequestException -->33<!-- see: https://github.com/hmlnarik/keycloak/pull/23#discussion_r862293798 -->34<groupId>io.quarkus.resteasy.reactive</groupId>35<artifactId>resteasy-reactive-common</artifactId>36<scope>provided</scope>37</dependency>38<dependency>39<groupId>junit</groupId>40<artifactId>junit</artifactId>41<scope>test</scope>42</dependency>43<dependency>44<groupId>org.jboss.logging</groupId>45<artifactId>jboss-logging</artifactId>46</dependency>47<dependency>48<groupId>org.jboss.logging</groupId>49<artifactId>jboss-logging-annotations</artifactId>50<scope>provided</scope>51</dependency>52<dependency>53<groupId>org.hamcrest</groupId>54<artifactId>hamcrest</artifactId>55<scope>test</scope>56</dependency>57</dependencies>58
59</project>