2020-06-22 20:17:49 +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>
2022-03-22 08:22:48 +00:00
<version > 999-SNAPSHOT</version>
2020-06-22 20:17:49 +00:00
</parent>
<modelVersion > 4.0.0</modelVersion>
<artifactId > keycloak-model-map</artifactId>
2021-07-19 16:19:14 +00:00
<name > Keycloak Model Map</name>
2020-06-22 20:17:49 +00:00
<description />
2021-09-21 08:16:37 +00:00
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<configuration >
<annotationProcessorPaths >
<path >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-model-build-processor</artifactId>
<version > ${project.version}</version>
</path>
</annotationProcessorPaths>
<annotationProcessors >
<annotationProcessor > org.keycloak.models.map.processor.GenerateEntityImplementationsProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
2022-03-17 11:35:23 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-jar-plugin</artifactId>
<executions >
<execution >
<goals >
<goal > test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
2021-09-21 08:16:37 +00:00
</plugins>
</build>
2020-06-22 20:17:49 +00:00
<dependencies >
<dependency >
<groupId > org.bouncycastle</groupId>
<artifactId > bcprov-jdk15on</artifactId>
</dependency>
<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>
2022-05-26 20:33:26 +00:00
<dependency >
<!-- needed for MapExportImportManager 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 -->
<groupId > org.jboss.resteasy</groupId>
2022-03-24 13:21:36 +00:00
<artifactId > resteasy-core</artifactId>
2022-05-26 20:33:26 +00:00
<scope > provided</scope>
</dependency>
2020-06-22 20:17:49 +00:00
<dependency >
2022-04-22 09:48:09 +00:00
<groupId > com.fasterxml.jackson.datatype</groupId>
<artifactId > jackson-datatype-jdk8</artifactId>
</dependency>
<dependency >
<groupId > org.jboss.logging</groupId>
<artifactId > jboss-logging</artifactId>
2020-06-22 20:17:49 +00:00
</dependency>
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<scope > test</scope>
</dependency>
2020-12-10 07:57:53 +00:00
<dependency >
<groupId > org.hamcrest</groupId>
2021-11-12 15:37:03 +00:00
<artifactId > hamcrest</artifactId>
2020-12-10 07:57:53 +00:00
<scope > test</scope>
</dependency>
2021-09-21 08:16:37 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-model-build-processor</artifactId>
<version > ${project.version}</version>
<optional > true</optional>
</dependency>
2020-06-22 20:17:49 +00:00
</dependencies>
2021-09-21 08:16:37 +00:00
2020-06-22 20:17:49 +00:00
</project>