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>
2022-03-22 08:22:48 +00:00
<version > 999-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 >
2021-08-04 15:04:26 +00:00
<!--
Override versions based on Quarkus dependencies.
Make sure to update these dependencies when Quarkus version changes.
2021-10-19 07:56:18 +00:00
See https://github.com/quarkusio/quarkus/blob/<versionTag > /bom/application/pom.xml
for reference
2021-08-04 15:04:26 +00:00
-->
2022-01-28 15:02:51 +00:00
<resteasy.version > 4.7.5.Final</resteasy.version>
2022-06-10 12:14:59 +00:00
<jackson.version > 2.13.3</jackson.version>
<jackson.databind.version > 2.13.3</jackson.databind.version>
2022-01-28 15:02:51 +00:00
<hibernate.core.version > 5.6.5.Final</hibernate.core.version>
<mysql.driver.version > 8.0.28</mysql.driver.version>
2022-02-24 14:53:07 +00:00
<postgresql.version > 42.3.3</postgresql.version>
2022-02-17 06:15:48 +00:00
<microprofile-metrics-api.version > 3.0.1</microprofile-metrics-api.version>
2021-08-04 15:04:26 +00:00
<wildfly.common.version > 1.5.4.Final-format-001</wildfly.common.version>
2022-04-25 16:33:26 +00:00
<infinispan.version > 13.0.9.Final</infinispan.version>
2022-04-08 15:44:32 +00:00
<wildfly-elytron.version > 1.18.3.Final</wildfly-elytron.version>
2022-03-11 08:25:34 +00:00
2021-08-04 15:04:26 +00:00
<!--
Java EE dependencies. Not available from JDK 11+.
The dependencies and their versions are the same used by Wildfly distribution.
-->
<org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec.version > 2.0.1.Final</org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec.version>
<sun.saaj-impl.version > 1.4.1.SP1</sun.saaj-impl.version>
<org.jvnet.staxex.version > 1.8.3</org.jvnet.staxex.version>
2022-03-08 10:04:43 +00:00
<!--
Quarkiverse dependency versions
-->
2022-06-10 12:14:59 +00:00
<io.quarkiverse.vault.version > 1.1.0</io.quarkiverse.vault.version>
2022-03-08 10:04:43 +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>
2022-06-14 11:43:38 +00:00
<!-- Needs to be aligned with Quarkus, see e.g. https://github.com/quarkusio/quarkus - quickstarts/blob/2.7.6.Final/getting - started - async/pom.xml#L14 -->
<surefire-plugin.version > 3.0.0-M5</surefire-plugin.version>
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>
<artifactId > infinispan-core</artifactId>
<version > ${infinispan.version}</version>
</dependency>
<dependency >
<groupId > org.infinispan</groupId>
<artifactId > infinispan-commons</artifactId>
<version > ${infinispan.version}</version>
</dependency>
2021-06-26 15:35:40 +00:00
<dependency >
<groupId > org.infinispan</groupId>
<artifactId > infinispan-server-hotrod</artifactId>
<version > ${infinispan.version}</version>
</dependency>
2020-05-18 22:48:13 +00:00
<dependency >
<groupId > org.infinispan</groupId>
<artifactId > infinispan-client-hotrod</artifactId>
<version > ${infinispan.version}</version>
</dependency>
2021-08-04 15:04:26 +00:00
<!-- Dependencies removed from JDK 11 and in compliance with those used by Wildfly. -->
<dependency >
<groupId > org.jboss.spec.javax.xml.bind</groupId>
<artifactId > jboss-jaxb-api_2.3_spec</artifactId>
<version > ${org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec.version}</version>
</dependency>
2019-10-17 11:39:42 +00:00
<dependency >
2021-08-04 15:04:26 +00:00
<groupId > com.sun.xml.messaging.saaj</groupId>
<artifactId > saaj-impl</artifactId>
<version > ${sun.saaj-impl.version}</version>
2019-10-17 11:39:42 +00:00
<exclusions >
<exclusion >
2021-08-04 15:04:26 +00:00
<groupId > javax.xml.soap</groupId>
<artifactId > saaj-api</artifactId>
</exclusion>
<exclusion >
<groupId > org.jvnet.mimepull</groupId>
<artifactId > mimepull</artifactId>
</exclusion>
<exclusion >
<groupId > org.jvnet.staxex</groupId>
<artifactId > stax-ex</artifactId>
2019-10-17 11:39:42 +00:00
</exclusion>
</exclusions>
</dependency>
<dependency >
2021-08-04 15:04:26 +00:00
<groupId > org.jvnet.staxex</groupId>
<artifactId > stax-ex</artifactId>
<version > ${org.jvnet.staxex.version}</version>
2021-04-15 10:53:48 +00:00
<exclusions >
<exclusion >
2021-08-04 15:04:26 +00:00
<groupId > javax.xml.stream</groupId>
<artifactId > stax-api</artifactId>
</exclusion>
<exclusion >
<groupId > javax.activation</groupId>
<artifactId > activation</artifactId>
2021-04-15 10:53:48 +00:00
</exclusion>
</exclusions>
</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>