2022-05-26 13:48:12 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<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" >
<parent >
<artifactId > keycloak-model-pom</artifactId>
<groupId > org.keycloak</groupId>
2023-03-03 10:11:44 +00:00
<version > 999.0.0-SNAPSHOT</version>
2022-05-26 13:48:12 +00:00
</parent>
<modelVersion > 4.0.0</modelVersion>
2024-01-24 14:39:29 +00:00
<artifactId > keycloak-model-storage-private</artifactId>
<name > Keycloak Database Support - Private classes</name>
2022-05-26 13:48:12 +00:00
<description />
<dependencies >
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-core</artifactId>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-server-spi</artifactId>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-server-spi-private</artifactId>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2024-01-24 14:39:29 +00:00
<artifactId > keycloak-model-storage</artifactId>
2022-05-26 13:48:12 +00:00
</dependency>
<dependency >
<!-- needed for LegacyExportImportManager that is calling ValidationUtil.validateClient (which is in server - spi - private) might throw a BadRequestException -->
<!-- see: https://github.com/hmlnarik/keycloak/pull/23#discussion_r862293798 -->
2024-02-29 11:43:13 +00:00
<groupId > io.quarkus.resteasy.reactive</groupId>
<artifactId > resteasy-reactive-common</artifactId>
2022-05-26 13:48:12 +00:00
<scope > provided</scope>
</dependency>
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.jboss.logging</groupId>
<artifactId > jboss-logging</artifactId>
</dependency>
<dependency >
<groupId > org.jboss.logging</groupId>
<artifactId > jboss-logging-annotations</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.hamcrest</groupId>
<artifactId > hamcrest</artifactId>
<scope > test</scope>
</dependency>
</dependencies>
</project>