2015-07-17 11:45:43 +00:00
<?xml version="1.0"?>
2016-02-03 10:20:22 +00:00
<!--
~ Copyright 2016 Red Hat, Inc. and/or its affiliates
~ and other contributors as indicated by the @author tags.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
2015-07-17 11:45:43 +00:00
<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/maven-v4_0_0.xsd">
<parent >
2019-03-06 10:33:57 +00:00
<artifactId > keycloak-model-pom</artifactId>
2015-07-17 11:45:43 +00:00
<groupId > org.keycloak</groupId>
2021-07-30 12:55:12 +00:00
<version > 16.0.0-SNAPSHOT</version>
2015-07-17 11:45:43 +00:00
</parent>
<modelVersion > 4.0.0</modelVersion>
<artifactId > keycloak-model-jpa</artifactId>
<name > Keycloak Model JPA</name>
<description />
2020-10-30 11:32:15 +00:00
<properties >
<keycloak.connectionsJpa.driver > org.h2.Driver</keycloak.connectionsJpa.driver>
<keycloak.connectionsJpa.database > keycloak</keycloak.connectionsJpa.database>
<keycloak.connectionsJpa.user > sa</keycloak.connectionsJpa.user>
<keycloak.connectionsJpa.password > </keycloak.connectionsJpa.password>
<keycloak.connectionsJpa.url > jdbc:h2:mem:test;MVCC=TRUE;DB_CLOSE_DELAY=-1</keycloak.connectionsJpa.url>
<jdbc.mvn.groupId > com.h2database</jdbc.mvn.groupId>
<jdbc.mvn.artifactId > h2</jdbc.mvn.artifactId>
<jdbc.mvn.version > ${h2.version}</jdbc.mvn.version>
<log4j.configuration > file:${project.build.directory}/dependency/log4j.properties</log4j.configuration>
</properties>
2015-07-17 11:45:43 +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>
2016-01-15 23:44:17 +00:00
<artifactId > keycloak-server-spi</artifactId>
2015-07-17 11:45:43 +00:00
</dependency>
2016-11-09 08:40:31 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-server-spi-private</artifactId>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
2016-01-19 22:00:58 +00:00
<artifactId > keycloak-services</artifactId>
2015-07-17 11:45:43 +00:00
</dependency>
<dependency >
2016-01-19 22:00:58 +00:00
<groupId > org.liquibase</groupId>
<artifactId > liquibase-core</artifactId>
<exclusions >
<exclusion >
<groupId > org.yaml</groupId>
<artifactId > snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
2019-09-25 06:02:17 +00:00
<groupId > jakarta.persistence</groupId>
<artifactId > jakarta.persistence-api</artifactId>
2015-07-17 11:45:43 +00:00
</dependency>
<dependency >
<groupId > org.hibernate</groupId>
2018-09-24 08:49:47 +00:00
<artifactId > hibernate-core</artifactId>
2015-07-17 11:45:43 +00:00
</dependency>
<dependency >
<groupId > org.jboss.resteasy</groupId>
<artifactId > resteasy-jaxrs</artifactId>
2018-09-24 08:49:47 +00:00
<scope > provided</scope>
2015-07-17 11:45:43 +00:00
</dependency>
2016-01-19 22:00:58 +00:00
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-databind</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-core</artifactId>
<scope > provided</scope>
</dependency>
2016-06-20 16:05:55 +00:00
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<scope > test</scope>
</dependency>
2020-10-30 11:32:15 +00:00
<dependency >
<groupId > org.hamcrest</groupId>
2021-11-12 15:37:03 +00:00
<artifactId > hamcrest</artifactId>
2020-10-30 11:32:15 +00:00
<scope > test</scope>
</dependency>
<dependency >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-api</artifactId>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-log4j12</artifactId>
</dependency>
<dependency >
<groupId > ${jdbc.mvn.groupId}</groupId>
<artifactId > ${jdbc.mvn.artifactId}</artifactId>
<version > ${jdbc.mvn.version}</version>
<scope > test</scope>
</dependency>
2015-07-17 11:45:43 +00:00
</dependencies>
2020-10-30 11:32:15 +00:00
<build >
<plugins >
<plugin >
<artifactId > maven-surefire-plugin</artifactId>
<configuration >
<systemPropertyVariables >
<keycloak.connectionsJpa.default.driver > ${keycloak.connectionsJpa.driver}</keycloak.connectionsJpa.default.driver>
<keycloak.connectionsJpa.default.database > ${keycloak.connectionsJpa.database}</keycloak.connectionsJpa.default.database>
<keycloak.connectionsJpa.default.user > ${keycloak.connectionsJpa.user}</keycloak.connectionsJpa.default.user>
<keycloak.connectionsJpa.default.password > ${keycloak.connectionsJpa.password}</keycloak.connectionsJpa.default.password>
<keycloak.connectionsJpa.default.url > ${keycloak.connectionsJpa.url}</keycloak.connectionsJpa.default.url>
<log4j.configuration > file:${project.build.directory}/test-classes/log4j.properties</log4j.configuration> <!-- for the logging to properly work with tests in the 'other' module -->
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
2015-07-17 11:45:43 +00:00
</project>