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>
|
2023-03-03 10:11:44 +00:00
|
|
|
<version>999.0.0-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>
|
2022-08-30 14:48:20 +00:00
|
|
|
<wildfly-common.version>1.5.4.Final-format-001</wildfly-common.version>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
We need to override certain dependencies from the parent POM.
|
|
|
|
TODO: remove these properties after changing the parent POM to use the same property names used by Quarkus BOM.
|
|
|
|
-->
|
|
|
|
<wildfly.common.version>${wildfly-common.version}</wildfly.common.version>
|
2022-03-11 08:25:34 +00:00
|
|
|
|
2019-10-08 09:20:37 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-08-04 15:04:26 +00:00
|
|
|
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
|
|
|
|
<maven.compiler.release>11</maven.compiler.release>
|
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
2019-10-08 09:20:37 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2020-07-16 20:44:57 +00:00
|
|
|
<artifactId>quarkus-bom</artifactId>
|
2019-10-08 09:20:37 +00:00
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2020-10-26 00:55:25 +00:00
|
|
|
|
2021-08-04 15:04:26 +00:00
|
|
|
<!-- Override the dependencies below to use the versions used by Keycloak -->
|
2020-05-18 22:48:13 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
2023-01-04 18:37:28 +00:00
|
|
|
<artifactId>infinispan-core-jakarta</artifactId>
|
2020-05-18 22:48:13 +00:00
|
|
|
<version>${infinispan.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
2023-01-04 18:37:28 +00:00
|
|
|
<artifactId>infinispan-commons-jakarta</artifactId>
|
2020-05-18 22:48:13 +00:00
|
|
|
<version>${infinispan.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
2023-01-04 18:37:28 +00:00
|
|
|
<artifactId>infinispan-client-hotrod-jakarta</artifactId>
|
2020-05-18 22:48:13 +00:00
|
|
|
<version>${infinispan.version}</version>
|
|
|
|
</dependency>
|
2019-10-08 09:20:37 +00:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2021-08-04 15:04:26 +00:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven.compiler.plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2020-05-18 22:48:13 +00:00
|
|
|
|
2019-10-08 09:20:37 +00:00
|
|
|
<modules>
|
2022-06-27 15:54:45 +00:00
|
|
|
<module>config-api</module>
|
2020-05-18 22:48:13 +00:00
|
|
|
<module>runtime</module>
|
2021-08-04 15:04:26 +00:00
|
|
|
<module>deployment</module>
|
2019-10-08 09:20:37 +00:00
|
|
|
<module>server</module>
|
2022-02-01 08:42:09 +00:00
|
|
|
<module>dist</module>
|
2021-11-23 14:45:46 +00:00
|
|
|
<module>tests</module>
|
2019-10-08 09:20:37 +00:00
|
|
|
</modules>
|
2021-08-04 15:04:26 +00:00
|
|
|
|
|
|
|
<repositories>
|
2022-02-16 07:59:05 +00:00
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
|
|
|
<name>Maven Central</name>
|
|
|
|
<url>https://repo.maven.apache.org/maven2</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
2021-08-04 15:04:26 +00:00
|
|
|
<repository>
|
|
|
|
<id>jboss-public-repository</id>
|
|
|
|
<name>Jboss Public</name>
|
|
|
|
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
|
2022-02-16 07:59:05 +00:00
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
2021-08-04 15:04:26 +00:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2020-07-09 15:28:22 +00:00
|
|
|
|
2019-10-08 09:20:37 +00:00
|
|
|
</project>
|