2019-10-08 09:20:37 +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.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<artifactId>keycloak-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2020-02-17 13:55:27 +00:00
|
|
|
<version>9.0.1-SNAPSHOT</version>
|
2019-10-08 09:20:37 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<name>Keycloak Quarkus Parent</name>
|
|
|
|
<description/>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>keycloak-quarkus-parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<properties>
|
2020-02-14 12:19:41 +00:00
|
|
|
<quarkus.version>1.2.1.Final</quarkus.version>
|
|
|
|
<resteasy.version>4.4.2.Final</resteasy.version>
|
|
|
|
<jackson.version>2.10.2</jackson.version>
|
|
|
|
<jackson.databind.version>${jackson.version}</jackson.databind.version>
|
2019-10-11 10:47:46 +00:00
|
|
|
|
|
|
|
<surefire-plugin.version>2.22.0</surefire-plugin.version>
|
|
|
|
|
2019-10-17 11:39:42 +00:00
|
|
|
<wildfly.common.format.version>1.5.0.Final-format-001</wildfly.common.format.version>
|
2019-10-08 09:20:37 +00:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
<noDeps>true</noDeps>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-bom</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-quarkus-extensions</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2019-10-17 11:39:42 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.common</groupId>
|
|
|
|
<artifactId>wildfly-common</artifactId>
|
|
|
|
<version>${wildfly.common.format.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<version>1.20</version>
|
|
|
|
</dependency>
|
2019-10-08 09:20:37 +00:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>extensions</module>
|
|
|
|
<module>server</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
</project>
|