2020-06-10 14:50:45 +02:00
<?xml version='1.0' encoding='UTF-8'?>
2016-02-03 11:20:22 +01:00
<!--
2016-03-29 11:32:08 +02: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.
2016-09-07 23:19:16 -04:00
2016-03-29 11:32:08 +02:00
-->
2020-06-10 14:50:45 +02: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" >
2015-07-17 13:45:43 +02:00
<modelVersion > 4.0.0</modelVersion>
<parent >
<groupId > org.jboss</groupId>
<artifactId > jboss-parent</artifactId>
2022-12-15 09:06:00 +01:00
<version > 39</version>
2015-07-17 13:45:43 +02:00
</parent>
<name > Keycloak</name>
<description >
Keycloak SSO
</description>
<groupId > org.keycloak</groupId>
<artifactId > keycloak-parent</artifactId>
2025-02-28 09:50:59 +00:00
<version > 26.1.3</version>
2015-07-17 13:45:43 +02:00
<packaging > pom</packaging>
<properties >
2024-06-21 14:19:31 +02:00
<!-- Maven -->
<maven.version > 3.9.8</maven.version>
<maven.compiler.source > 17</maven.compiler.source>
<maven.compiler.target > 17</maven.compiler.target>
<maven.compiler.release > 17</maven.compiler.release>
2025-02-28 09:50:59 +00:00
<project.version.npm > 26.1.3</project.version.npm>
2023-10-04 00:00:53 -06:00
2023-05-17 17:34:32 +02:00
<asciidoctor.plugin.version > 1.5.8</asciidoctor.plugin.version>
2022-03-15 08:59:11 +01:00
<jboss.repo.nexusUrl > https://s01.oss.sonatype.org/</jboss.repo.nexusUrl>
<jboss.releases.repo.id > jboss-releases-repository</jboss.releases.repo.id>
2024-10-24 12:19:09 +02:00
<jboss.releases.repo.name > keycloak</jboss.releases.repo.name>
2022-03-15 08:59:11 +01:00
<jboss.releases.repo.url > https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</jboss.releases.repo.url>
<jboss.snapshots.repo.id > jboss-snapshots-repository</jboss.snapshots.repo.id>
<jboss.snapshots.repo.url > https://s01.oss.sonatype.org/content/repositories/snapshots/</jboss.snapshots.repo.url>
2025-02-28 09:09:32 +01:00
<quarkus.version > 3.15.3.1</quarkus.version>
<quarkus.build.version > 3.15.3.1</quarkus.build.version>
2020-06-10 14:50:45 +02:00
2022-10-18 14:43:04 +02:00
<project.build-time > ${timestamp}</project.build-time>
2020-06-10 14:50:45 +02:00
2023-11-07 10:31:58 +01:00
<!-- Following properties are used for downstream build to alter final distribution archive file name and internal base directory of the archive. -->
<dist.archive.file.prefix > keycloak</dist.archive.file.prefix>
<dist.archive.dir.prefix > ${dist.archive.file.prefix}</dist.archive.dir.prefix>
<dist.archive.file.version > ${project.version}</dist.archive.file.version>
<dist.archive.dir.version > ${project.version}</dist.archive.dir.version>
<dist.archive.file > ${dist.archive.file.prefix}-${dist.archive.file.version}</dist.archive.file>
<dist.archive.dir > ${dist.archive.dir.prefix}-${dist.archive.dir.version}</dist.archive.dir>
2023-09-20 15:13:08 +02:00
<!-- core version for app - server - wildfly/eap tests, should match wildfly/eap server -->
2024-06-12 15:24:58 +02:00
<tests.wildfly.core.version > 21.1.1.Final</tests.wildfly.core.version>
2023-09-20 15:13:08 +02:00
2023-08-29 09:51:12 +02:00
<!-- Upstream WildFly Versions -->
2023-08-30 15:24:09 +02:00
<upstream.wildfly.version > 29.0.0.Final</upstream.wildfly.version>
2023-08-29 09:51:12 +02:00
<upstream.wildfly.build-tools.version > 1.2.13.Final</upstream.wildfly.build-tools.version>
<upstream.wildfly.core.version > 21.1.0.Final</upstream.wildfly.core.version>
<!-- Downstream Builds WildFly Versions Override -->
<eap8.version > 8.0.0.GA-redhat-00007</eap8.version> <!-- G:A = org.jboss.eap:jboss - eap - parent -->
<eap8.wildfly.version > ${eap8.version}</eap8.wildfly.version>
<eap8.wildfly.core.version > 21.1.0.Final</eap8.wildfly.core.version>
<eap8.wildfly.build-tools.version > 1.2.13.Final</eap8.wildfly.build-tools.version>
2023-04-18 08:47:24 +02:00
<wildfly.jakarta.adapters > true</wildfly.jakarta.adapters>
2017-03-31 15:50:53 +02:00
2017-08-28 12:06:37 +02:00
<jboss.as.version > 7.2.0.Final</jboss.as.version>
2019-10-08 08:57:33 +02:00
<jboss.as.subsystem.test.version > 7.5.22.Final-redhat-1</jboss.as.subsystem.test.version>
2016-02-09 20:15:23 +01:00
2019-02-15 21:00:46 +01:00
<!-- Versions used mostly for Undertow server, aligned with WildFly -->
2020-06-10 14:50:45 +02:00
<jboss.dmr.version > 1.5.1.Final</jboss.dmr.version>
2022-06-21 11:17:45 +02:00
2024-09-23 20:10:24 +02:00
<bouncycastle.pkixfips.version > 2.0.7</bouncycastle.pkixfips.version>
<bouncycastle.bcfips.version > 2.0.0</bouncycastle.bcfips.version>
<bouncycastle.bctls-fips.version > 2.0.19</bouncycastle.bctls-fips.version>
<bouncycastle.bcutilfips.version > 2.0.3</bouncycastle.bcutilfips.version>
2024-05-19 12:18:40 +10:00
2020-05-06 12:36:52 +02:00
<dom4j.version > 2.1.3</dom4j.version>
2024-09-17 14:18:53 +02:00
<h2.version > 2.3.230</h2.version>
2023-11-20 14:27:13 +01:00
<hibernate-orm.plugin.version > 6.2.13.Final</hibernate-orm.plugin.version>
<hibernate.c3p0.version > 6.2.13.Final</hibernate.c3p0.version>
2025-02-12 16:37:04 +00:00
<infinispan.version > 15.0.13.Final</infinispan.version>
2025-02-13 12:57:26 +01:00
<!-- remove the JGroups version once it is included in an Infinispan upgrade -->
<jgroups.version > 5.3.15.Final</jgroups.version>
2025-02-12 16:37:04 +00:00
<protostream.plugin.version > 5.0.13.Final</protostream.plugin.version>
2023-01-04 16:25:12 +01:00
<!-- JAKARTA -->
2023-03-24 12:23:37 +01:00
<jakarta.mail.version > 2.1.1</jakarta.mail.version>
2024-10-25 11:36:07 -04:00
<angus.mail.version > 2.0.3</angus.mail.version>
2023-01-04 16:25:12 +01:00
<jakarta.xml.ws.version > 4.0.0</jakarta.xml.ws.version>
2023-01-09 10:57:57 +01:00
<jakarta.xml.soap.version > 3.0.0</jakarta.xml.soap.version>
2023-01-04 16:25:12 +01:00
2023-01-09 10:57:57 +01:00
<servlet.api.30.version > 1.0.2.Final</servlet.api.30.version>
<jboss-jaxrs-api_2.1_spec > 2.0.2.Final</jboss-jaxrs-api_2.1_spec>
<jboss-servlet-api_4.0_spec > 2.0.0.Final</jboss-servlet-api_4.0_spec>
2020-12-30 15:50:34 +01:00
<jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec.version > 2.0.1.Final</jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec.version>
2019-09-25 08:02:17 +02:00
<jboss.spec.javax.servlet.jsp.jboss-jsp-api_2.3_spec.version > 2.0.0.Final</jboss.spec.javax.servlet.jsp.jboss-jsp-api_2.3_spec.version>
2017-11-29 12:55:47 +01:00
<log4j.version > 1.2.17</log4j.version>
2024-08-16 11:41:34 +02:00
<resteasy.version > 6.2.9.Final</resteasy.version>
2020-01-10 13:12:20 +01:00
<resteasy.undertow.version > ${resteasy.version}</resteasy.undertow.version>
2024-04-12 12:49:19 -04:00
<owasp.html.sanitizer.version > 20240325.1</owasp.html.sanitizer.version>
2023-03-14 18:42:35 +01:00
<slf4j.version > 2.0.6</slf4j.version>
2020-03-24 15:10:34 -07:00
<sun.istack.version > 3.0.10</sun.istack.version>
2023-01-30 22:36:58 -03:00
<sun.saaj.version > 2.0.1</sun.saaj.version>
2020-03-24 15:10:34 -07:00
<sun.xml.bind.version > 2.3.3-b02</sun.xml.bind.version>
2023-01-31 11:47:19 -03:00
<sun.xml.ws.version > 4.0.0</sun.xml.ws.version>
2023-01-04 16:38:14 +01:00
<sun.activation.version > 1.2.2</sun.activation.version>
2020-03-24 15:10:34 -07:00
<org.glassfish.jaxb.xsom.version > 2.3.3-b02</org.glassfish.jaxb.xsom.version>
2023-10-24 16:11:48 +02:00
<undertow.version > ${undertow-legacy.version}</undertow.version>
<undertow-legacy.version > 2.2.24.Final</undertow-legacy.version>
2023-01-09 10:57:57 +01:00
<undertow-jakarta.version > 2.3.2.Final</undertow-jakarta.version>
2024-09-13 20:18:48 +02:00
<wildfly-elytron.version > 2.5.2.Final</wildfly-elytron.version>
2021-03-16 08:10:32 +01:00
<elytron.undertow-server.version > 1.9.0.Final</elytron.undertow-server.version>
2020-03-24 15:10:34 -07:00
<woodstox.version > 6.0.3</woodstox.version>
2023-09-05 23:19:39 +02:00
<wildfly.common.quarkus.aligned.version > 1.5.4.Final-format-001</wildfly.common.quarkus.aligned.version>
<wildfly.common.wildfly.aligned.version > 1.6.0.Final</wildfly.common.wildfly.aligned.version>
2023-10-23 10:27:44 -03:00
<xmlsec.version > 2.2.6</xmlsec.version>
2023-04-03 20:06:30 +02:00
<nashorn.version > 15.4</nashorn.version>
2023-02-28 15:03:37 -08:00
<ua-parser.version > 1.5.4</ua-parser.version>
2023-07-06 15:56:02 -07:00
<org.yaml.snakeyaml.version > 2.0</org.yaml.snakeyaml.version>
2022-02-16 08:59:05 +01:00
<picketbox.version > 5.0.3.Final</picketbox.version>
2025-02-14 12:44:31 -03:00
<xstream.version > 1.4.21</xstream.version>
2023-02-07 14:59:23 +01:00
<org.snakeyaml.snakeyaml-engine.version > 2.6</org.snakeyaml.snakeyaml-engine.version>
2016-02-09 20:15:23 +01:00
<!-- Others -->
2019-10-23 16:30:28 +02:00
<commons-lang.version > 2.6</commons-lang.version>
2020-05-13 15:58:20 +03:00
<apacheds.version > 2.0.0.AM26</apacheds.version>
<apacheds.codec.version > 2.0.0</apacheds.codec.version>
2020-01-21 15:53:23 +01:00
<google.zxing.version > 3.4.0</google.zxing.version>
2023-07-07 15:40:59 +02:00
<freemarker.version > 2.3.32</freemarker.version>
2024-09-13 12:01:55 +02:00
<sundrio.version > 0.200.0</sundrio.version>
2017-10-17 20:41:44 +02:00
2024-03-18 17:05:53 +01:00
<!-- json - ld processing for oid4vci ld - proofs -->
<com.apicatalog.titanium-json-ld.version > 1.3.3</com.apicatalog.titanium-json-ld.version>
<io.setl.rdf-urdna.version > 1.1</io.setl.rdf-urdna.version>
2024-09-13 20:18:48 +02:00
<liquibase.version > 4.29.1</liquibase.version>
2016-02-11 09:09:39 +01:00
<servlet.api.30.version > 1.0.2.Final</servlet.api.30.version>
2020-03-23 12:47:37 +01:00
<servlet.api.40.version > 2.0.0.Final</servlet.api.40.version>
2023-02-03 15:28:37 +01:00
<twitter4j.version > 4.1.2</twitter4j.version>
2016-02-09 20:15:23 +01:00
2023-07-05 17:52:02 +02:00
<!-- Databases - also published to db.adoc as "Tested Version" -->
2024-11-27 10:06:21 +01:00
<mysql.version > 8.4</mysql.version>
2025-01-10 13:01:44 +01:00
<mysql.container > mirror.gcr.io/mysql:${mysql.version}</mysql.container>
2024-02-07 11:57:23 -05:00
<mysql-jdbc.version > 8.3.0</mysql-jdbc.version>
2024-11-29 08:39:27 +01:00
<postgresql.version > 17</postgresql.version>
2025-01-10 13:01:44 +01:00
<postgresql.container > mirror.gcr.io/postgres:${postgresql.version}</postgresql.container>
2024-05-27 16:17:58 +02:00
<aurora-postgresql.version > 16.1</aurora-postgresql.version>
2024-03-12 10:55:28 +00:00
<aws-jdbc-wrapper.version > 2.3.1</aws-jdbc-wrapper.version>
2024-09-13 20:18:48 +02:00
<postgresql-jdbc.version > 42.7.4</postgresql-jdbc.version>
2024-11-29 08:39:33 +01:00
<mariadb.version > 11.4</mariadb.version>
2025-01-10 13:01:44 +01:00
<mariadb.container > mirror.gcr.io/mariadb:${mariadb.version}</mariadb.container>
2024-09-13 20:18:48 +02:00
<mariadb-jdbc.version > 3.4.1</mariadb-jdbc.version>
2024-11-11 07:04:30 +01:00
<mssql.version > 2022</mssql.version>
<mssql.container > mcr.microsoft.com/mssql/server:${mssql.version}-latest</mssql.container>
2023-09-05 15:38:19 +02:00
<!-- this is the mssql driver version also used in the Quarkus BOM -->
2024-09-13 20:18:48 +02:00
<mssql-jdbc.version > 12.8.1.jre11</mssql-jdbc.version>
2024-11-11 07:04:30 +01:00
<oracledb.version > 23.5</oracledb.version>
2025-01-10 13:01:44 +01:00
<oracledb.container > mirror.gcr.io/gvenzl/oracle-free:${oracledb.version}-slim-faststart</oracledb.container>
2023-09-05 15:38:19 +02:00
<!-- this is the oracle driver version also used in the Quarkus BOM -->
2024-09-13 20:18:48 +02:00
<oracle-jdbc.version > 23.5.0.24.07</oracle-jdbc.version>
2021-03-04 02:39:47 +01:00
2016-02-09 20:15:23 +01:00
<!-- Test -->
2023-03-24 12:23:37 +01:00
<greenmail.version > 2.1.0-alpha-1</greenmail.version>
2015-07-17 13:45:43 +02:00
<jmeter.version > 2.10</jmeter.version>
2021-02-17 11:32:51 +01:00
<junit.version > 4.13.2</junit.version>
2016-02-09 20:15:23 +01:00
<picketlink.version > 2.7.0.Final</picketlink.version>
2022-11-30 00:04:56 +01:00
<!-- Needs to be aligned with Quarkus, see e.g. https://github.com/quarkusio/quarkus - quickstarts/blob/2.13.5.Final/getting - started - async/pom.xml#L14 -->
<surefire-plugin.version > 3.0.0-M7</surefire-plugin.version>
2016-02-09 20:15:23 +01:00
<xml-apis.version > 1.4.01</xml-apis.version>
2016-05-16 22:31:23 +02:00
<subethasmtp.version > 3.1.7</subethasmtp.version>
2022-02-03 09:38:45 +01:00
<assertj-core.version > 3.22.0</assertj-core.version>
2024-09-13 12:01:55 +02:00
2016-02-09 20:15:23 +01:00
<!-- Maven Plugins -->
2024-06-21 14:19:31 +02:00
<maven.plugins.version > 3.13.1</maven.plugins.version>
2023-03-13 19:16:12 +01:00
<replacer.plugin.version > 1.4.1</replacer.plugin.version>
2015-07-17 13:45:43 +02:00
<jboss.as.plugin.version > 7.5.Final</jboss.as.plugin.version>
<jmeter.plugin.version > 1.9.0</jmeter.plugin.version>
<jmeter.analysis.plugin.version > 1.0.4</jmeter.analysis.plugin.version>
2024-06-12 15:24:58 +02:00
<wildfly.plugin.version > 5.0.0.Final</wildfly.plugin.version>
2023-07-04 13:00:04 +02:00
<nexus.staging.plugin.version > 1.6.13</nexus.staging.plugin.version>
2024-10-24 12:19:09 +02:00
<nexus3.staging.plugin.version > 1.0.7</nexus3.staging.plugin.version>
2024-04-02 16:14:58 +02:00
<frontend.plugin.version > 1.15.0</frontend.plugin.version>
2023-01-10 13:55:37 +01:00
<docker.maven.plugin.version > 0.40.3</docker.maven.plugin.version>
2021-02-05 20:23:49 +01:00
<verifier.plugin.version > 1.1</verifier.plugin.version>
2023-02-14 11:44:53 +01:00
<shade.plugin.version > 3.4.1</shade.plugin.version>
2023-10-06 13:41:42 +02:00
<smallrye.openapi.generator.plugin.version > 3.6.2</smallrye.openapi.generator.plugin.version>
2023-05-30 13:41:25 -04:00
<openapi.generator.plugin.version > 6.3.0</openapi.generator.plugin.version>
2023-11-07 10:31:58 +01:00
<build-helper-maven-plugin.version > 3.2.0</build-helper-maven-plugin.version>
2016-11-09 09:40:31 +01:00
2016-02-19 15:29:27 +01:00
<!-- Surefire Settings -->
2019-04-26 23:16:50 +02:00
<surefire.memory.Xms > 512m</surefire.memory.Xms>
<surefire.memory.Xmx > 2048m</surefire.memory.Xmx>
<surefire.memory.metaspace > 96m</surefire.memory.metaspace>
2019-11-14 14:45:05 +01:00
<surefire.memory.metaspace.max > 512m</surefire.memory.metaspace.max>
2019-04-26 23:16:50 +02:00
<surefire.memory.settings > -Xms${surefire.memory.Xms} -Xmx${surefire.memory.Xmx} -XX:MetaspaceSize=${surefire.memory.metaspace} -XX:MaxMetaspaceSize=${surefire.memory.metaspace.max}</surefire.memory.settings>
2024-06-21 14:19:31 +02:00
<!-- See: https://github.com/keycloak/keycloak/issues/9899 -->
<surefire.system.args >
--add-opens=java.base/java.lang=ALL-UNNAMED
--add-opens=java.base/java.util=ALL-UNNAMED
</surefire.system.args>
2019-02-13 12:53:45 +01:00
2019-10-01 22:17:38 +09:00
<!-- webauthn support -->
2023-08-15 15:40:10 +02:00
<webauthn4j.version > 0.21.5.RELEASE</webauthn4j.version>
2023-03-09 21:05:29 +11:00
<org.apache.kerby.kerby-asn1.version > 2.0.3</org.apache.kerby.kerby-asn1.version>
2019-10-01 22:17:38 +09:00
2023-05-22 11:19:30 +02:00
<!-- Used to test SAML Galleon feature - pack layers discovery -->
<version.org.wildfly.glow > 1.0.0.Alpha8</version.org.wildfly.glow>
2021-02-05 20:23:49 +01:00
<!-- Galleon -->
<galleon.fork.embedded > true</galleon.fork.embedded>
<galleon.log.time > true</galleon.log.time>
<galleon.offline > true</galleon.offline>
<!-- Properties that drive the names of various directories produced by and used in the build -->
<server.output.dir.prefix > keycloak</server.output.dir.prefix>
<!-- Version suffix that is appended to directories. Default is the maven GAV version but this can be edited to use a short form version -->
<server.output.dir.version > ${project.version}</server.output.dir.version>
2024-06-13 12:52:37 +01:00
<!-- Set to true on release to update proto.lock files -->
<commitProtoLockChanges > false</commitProtoLockChanges>
2024-10-08 15:22:41 +01:00
<skipProtoLock > false</skipProtoLock>
2015-07-17 13:45:43 +02:00
</properties>
<url > http://keycloak.org</url>
<licenses >
<license >
<name > Apache License, Version 2.0</name>
2017-02-22 15:25:08 +01:00
<url > https://www.apache.org/licenses/LICENSE-2.0</url>
2015-07-17 13:45:43 +02:00
<distribution > repo</distribution>
</license>
</licenses>
<scm >
<connection > scm:git:git://github.com/keycloak/keycloak.git</connection>
<developerConnection > scm:git:git@github.com:keycloak/keycloak.git</developerConnection>
2017-02-22 15:25:08 +01:00
<url > https://github.com/keycloak/keycloak/tree/master/</url>
2015-07-17 13:45:43 +02:00
</scm>
<distributionManagement >
<repository >
2022-03-15 08:59:11 +01:00
<id > ${jboss.releases.repo.id}</id>
2015-07-17 13:45:43 +02:00
<name > JBoss Releases Repository</name>
2022-03-15 08:59:11 +01:00
<url > ${jboss.releases.repo.url}</url>
2015-07-17 13:45:43 +02:00
</repository>
</distributionManagement>
<issueManagement >
<system > JIRA</system>
2021-11-08 13:21:43 +01:00
<url > https://github.com/keycloak/keycloak/issues</url>
2015-07-17 13:45:43 +02:00
</issueManagement>
<developers >
<developer >
2021-12-10 12:24:23 +01:00
<id > keycloak</id>
<name > Keycloak Team</name>
2015-07-17 13:45:43 +02:00
</developer>
</developers>
2021-05-03 16:06:07 -03:00
<contributors > </contributors>
2015-07-17 13:45:43 +02:00
<modules >
2017-01-11 14:30:16 +01:00
<module > boms</module>
2015-10-01 14:27:51 -04:00
<module > common</module>
2015-07-17 13:45:43 +02:00
<module > core</module>
2022-06-21 11:17:45 +02:00
<module > crypto</module>
2015-07-17 13:45:43 +02:00
<module > dependencies</module>
2016-01-15 18:44:17 -05:00
<module > server-spi</module>
2016-11-09 09:40:31 +01:00
<module > server-spi-private</module>
2016-04-12 15:19:46 -04:00
<module > saml-core-api</module>
2016-01-21 09:56:28 -05:00
<module > saml-core</module>
2015-07-17 13:45:43 +02:00
<module > federation</module>
<module > services</module>
2016-01-21 13:51:01 +01:00
<module > themes</module>
2016-01-19 17:00:58 -05:00
<module > model</module>
2015-07-17 13:45:43 +02:00
<module > util</module>
2023-01-19 13:06:21 +01:00
<module > rest</module>
2016-01-20 16:46:38 -05:00
<module > integration</module>
2016-06-17 02:07:34 -03:00
<module > authz</module>
2023-03-01 09:39:22 +01:00
<module > js</module>
2024-08-28 14:14:08 +02:00
<module > test-framework</module>
2024-11-01 08:52:00 +01:00
<module > tests</module>
2022-09-30 14:26:55 +02:00
<module > quarkus</module>
2015-07-17 13:45:43 +02:00
</modules>
<dependencyManagement >
2022-04-21 16:33:55 +02:00
2015-07-17 13:45:43 +02:00
<dependencies >
2024-01-15 09:20:47 +01:00
<dependency >
<groupId > org.infinispan</groupId>
<artifactId > infinispan-bom</artifactId>
<version > ${infinispan.version}</version>
<type > pom</type>
<scope > import</scope>
</dependency>
2025-02-13 12:57:26 +01:00
<dependency >
<groupId > org.jgroups</groupId>
<artifactId > jgroups</artifactId>
<version > ${jgroups.version}</version>
</dependency>
2023-05-25 19:00:49 +02:00
<dependency >
<groupId > io.quarkus.platform</groupId>
<artifactId > quarkus-bom</artifactId>
<version > ${quarkus.version}</version>
<type > pom</type>
<scope > import</scope>
</dependency>
2024-09-13 12:01:55 +02:00
<dependency >
<groupId > io.sundr</groupId>
<artifactId > builder-annotations</artifactId>
<version > ${sundrio.version}</version>
</dependency>
2023-01-11 08:48:00 +01:00
<dependency >
<groupId > com.thoughtworks.xstream</groupId>
<artifactId > xstream</artifactId>
<version > ${xstream.version}</version>
</dependency>
2023-02-07 14:59:23 +01:00
<dependency >
<groupId > org.snakeyaml</groupId>
<artifactId > snakeyaml-engine</artifactId>
<version > ${org.snakeyaml.snakeyaml-engine.version}</version>
</dependency>
2016-12-22 16:18:24 -05:00
<dependency >
<groupId > org.jboss</groupId>
<artifactId > jboss-dmr</artifactId>
<version > ${jboss.dmr.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > com.sun.istack</groupId>
<artifactId > istack-commons-runtime</artifactId>
<version > ${sun.istack.version}</version>
</dependency>
<dependency >
<groupId > com.sun.istack</groupId>
<artifactId > istack-commons-tools</artifactId>
<version > ${sun.istack.version}</version>
</dependency>
2019-09-23 16:48:19 -07:00
<dependency >
2023-01-30 22:36:58 -03:00
<groupId > com.sun.xml.messaging.saaj</groupId>
<artifactId > saaj-impl</artifactId>
<version > ${sun.saaj.version}</version>
2019-09-23 16:48:19 -07:00
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > com.sun.xml.bind.external</groupId>
<artifactId > rngom</artifactId>
2019-11-19 09:20:44 +01:00
<version > ${sun.xml.bind.version}</version>
2015-07-17 13:45:43 +02:00
</dependency>
2023-01-31 11:47:19 -03:00
<dependency >
<groupId > com.sun.xml.ws</groupId>
<artifactId > rt</artifactId>
<version > ${sun.xml.ws.version}</version>
<exclusions >
<exclusion >
<groupId > com.fasterxml.woodstox</groupId>
<artifactId > woodstox-core</artifactId>
</exclusion>
<exclusion >
<groupId > org.glassfish.jaxb</groupId>
<artifactId > txw2</artifactId>
</exclusion>
<exclusion >
<groupId > org.glassfish.ha</groupId>
<artifactId > ha-api</artifactId>
</exclusion>
<exclusion >
<groupId > com.sun.xml.messaging.saaj</groupId>
<artifactId > saaj-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
2019-02-15 21:00:46 +01:00
<groupId > org.glassfish.jaxb</groupId>
2015-07-17 13:45:43 +02:00
<artifactId > xsom</artifactId>
2019-02-15 21:00:46 +01:00
<version > ${org.glassfish.jaxb.xsom.version}</version>
2015-07-17 13:45:43 +02:00
</dependency>
2024-09-23 20:10:24 +02:00
2022-06-21 11:17:45 +02:00
<dependency >
<groupId > org.bouncycastle</groupId>
<artifactId > bcpkix-fips</artifactId>
<version > ${bouncycastle.pkixfips.version}</version>
</dependency>
2024-06-22 11:07:42 +02:00
<dependency >
<groupId > org.bouncycastle</groupId>
<artifactId > bc-fips</artifactId>
<version > ${bouncycastle.bcfips.version}</version>
</dependency>
2024-05-19 12:18:40 +10:00
<dependency >
<groupId > org.bouncycastle</groupId>
<artifactId > bctls-fips</artifactId>
<version > ${bouncycastle.bctls-fips.version}</version>
</dependency>
2024-09-23 20:10:24 +02:00
<dependency >
<groupId > org.bouncycastle</groupId>
<artifactId > bcutil-fips</artifactId>
<version > ${bouncycastle.bcutilfips.version}</version>
</dependency>
2024-09-13 12:01:55 +02:00
2019-09-04 15:52:16 -03:00
<dependency >
<groupId > com.github.ua-parser</groupId>
<artifactId > uap-java</artifactId>
<version > ${ua-parser.version}</version>
2023-07-06 15:56:02 -07:00
<exclusions >
<exclusion >
<groupId > org.yaml</groupId>
<artifactId > snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency >
<groupId > org.yaml</groupId>
<artifactId > snakeyaml</artifactId>
<version > ${org.yaml.snakeyaml.version}</version>
2019-09-04 15:52:16 -03:00
</dependency>
2023-01-04 16:25:12 +01:00
<!-- JAKARTA -->
2023-01-19 13:10:19 +01:00
<dependency >
2023-03-24 12:23:37 +01:00
<groupId > jakarta.mail</groupId>
<artifactId > jakarta.mail-api</artifactId>
<version > ${jakarta.mail.version}</version>
</dependency>
<!-- Implementation of the Jakarta Mail API -->
<dependency >
<groupId > org.eclipse.angus</groupId>
<artifactId > angus-mail</artifactId>
<version > ${angus.mail.version}</version>
2015-07-17 13:45:43 +02:00
</dependency>
<dependency >
2023-01-04 16:25:12 +01:00
<groupId > jakarta.xml.ws</groupId>
<artifactId > jakarta.xml.ws-api</artifactId>
<version > ${jakarta.xml.ws.version}</version>
2015-07-17 13:45:43 +02:00
</dependency>
2023-01-09 10:57:57 +01:00
<dependency >
<groupId > jakarta.xml.soap</groupId>
<artifactId > jakarta.xml.soap-api</artifactId>
<version > ${jakarta.xml.soap.version}</version>
</dependency>
2023-01-04 16:25:12 +01:00
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.jboss.resteasy</groupId>
2022-03-24 10:21:36 -03:00
<artifactId > resteasy-core</artifactId>
2015-07-17 13:45:43 +02:00
<version > ${resteasy.version}</version>
2019-10-03 10:52:53 -03:00
<exclusions >
<exclusion >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
2018-09-24 10:49:47 +02:00
</exclusion>
<exclusion >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-api</artifactId>
</exclusion>
<exclusion >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-simple</artifactId>
</exclusion>
</exclusions>
2015-07-17 13:45:43 +02:00
</dependency>
2024-02-07 11:57:23 -05:00
<dependency >
<groupId > org.jboss.resteasy</groupId>
<artifactId > resteasy-core-spi</artifactId>
<version > ${resteasy.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.jboss.resteasy</groupId>
<artifactId > resteasy-multipart-provider</artifactId>
<version > ${resteasy.version}</version>
</dependency>
<dependency >
<groupId > org.jboss.resteasy</groupId>
2016-01-13 21:03:32 +01:00
<artifactId > resteasy-jackson2-provider</artifactId>
2015-07-17 13:45:43 +02:00
<version > ${resteasy.version}</version>
</dependency>
<dependency >
<groupId > org.jboss.resteasy</groupId>
2019-02-12 10:12:40 +01:00
<artifactId > resteasy-jaxb-provider</artifactId>
<version > ${resteasy.version}</version>
</dependency>
<dependency >
<groupId > org.jboss.resteasy</groupId>
2015-07-17 13:45:43 +02:00
<artifactId > resteasy-client</artifactId>
2016-01-13 21:03:32 +01:00
<version > ${resteasy.version}</version>
2015-07-17 13:45:43 +02:00
</dependency>
<dependency >
<groupId > org.jboss.resteasy</groupId>
<artifactId > resteasy-undertow</artifactId>
2018-12-19 11:34:27 +01:00
<version > ${resteasy.undertow.version}</version>
2018-09-24 10:49:47 +02:00
<exclusions >
<exclusion >
<groupId > io.undertow</groupId>
<artifactId > undertow-servlet</artifactId>
</exclusion>
<exclusion >
<groupId > io.undertow</groupId>
<artifactId > undertow-core</artifactId>
</exclusion>
</exclusions>
2016-01-13 21:03:32 +01:00
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.jboss.spec.javax.xml.bind</groupId>
2018-09-24 10:49:47 +02:00
<artifactId > jboss-jaxb-api_2.3_spec</artifactId>
<version > ${jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec.version}</version>
2015-07-17 13:45:43 +02:00
</dependency>
2018-11-07 14:44:22 +01:00
<dependency >
<groupId > org.jboss.spec.javax.servlet.jsp</groupId>
<artifactId > jboss-jsp-api_2.3_spec</artifactId>
<version > ${jboss.spec.javax.servlet.jsp.jboss-jsp-api_2.3_spec.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > io.undertow</groupId>
<artifactId > undertow-servlet</artifactId>
<version > ${undertow.version}</version>
</dependency>
<dependency >
<groupId > io.undertow</groupId>
<artifactId > undertow-core</artifactId>
<version > ${undertow.version}</version>
</dependency>
<dependency >
<groupId > org.picketlink</groupId>
<artifactId > picketlink-wildfly-common</artifactId>
<version > ${picketlink.version}</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
<version > ${log4j.version}</version>
2023-05-17 16:34:20 +02:00
</dependency>
2018-07-31 14:51:42 -04:00
<dependency >
<groupId > com.googlecode.owasp-java-html-sanitizer</groupId>
<artifactId > owasp-java-html-sanitizer</artifactId>
<version > ${owasp.html.sanitizer.version}</version>
</dependency>
2024-04-12 12:49:19 -04:00
<dependency >
<groupId > com.googlecode.owasp-java-html-sanitizer</groupId>
<artifactId > java8-shim</artifactId>
<version > ${owasp.html.sanitizer.version}</version>
</dependency>
<dependency >
<groupId > com.googlecode.owasp-java-html-sanitizer</groupId>
<artifactId > java10-shim</artifactId>
<version > ${owasp.html.sanitizer.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > ${junit.version}</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > com.h2database</groupId>
<artifactId > h2</artifactId>
<version > ${h2.version}</version>
</dependency>
2018-10-05 13:20:09 +02:00
<dependency >
2023-01-04 16:38:14 +01:00
<groupId > org.hibernate.orm</groupId>
2018-10-05 13:20:09 +02:00
<artifactId > hibernate-c3p0</artifactId>
2018-12-19 11:34:27 +01:00
<version > ${hibernate.c3p0.version}</version>
2018-10-05 13:20:09 +02:00
<scope > test</scope>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.freemarker</groupId>
<artifactId > freemarker</artifactId>
<version > ${freemarker.version}</version>
</dependency>
<dependency >
<groupId > org.apache.santuario</groupId>
<artifactId > xmlsec</artifactId>
<version > ${xmlsec.version}</version>
<exclusions >
<exclusion >
2018-09-24 10:49:47 +02:00
<groupId > com.fasterxml.woodstox</groupId>
<artifactId > woodstox-core</artifactId>
2016-02-25 11:43:00 -03:00
</exclusion>
2015-07-17 13:45:43 +02:00
</exclusions>
</dependency>
<dependency >
<groupId > org.wildfly</groupId>
<artifactId > wildfly-dist</artifactId>
<version > ${wildfly.version}</version>
<type > zip</type>
</dependency>
2022-05-27 12:28:50 +02:00
<dependency >
<groupId > org.openjdk.nashorn</groupId>
<artifactId > nashorn-core</artifactId>
<version > ${nashorn.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<!-- Twitter -->
<dependency >
<groupId > org.twitter4j</groupId>
<artifactId > twitter4j-core</artifactId>
<version > ${twitter4j.version}</version>
2023-09-06 15:19:10 +02:00
<exclusions >
<exclusion >
<groupId > org.jetbrains</groupId>
<artifactId > annotations</artifactId>
</exclusion>
</exclusions>
2015-07-17 13:45:43 +02:00
</dependency>
<!-- QR Code Generator -->
<dependency >
<groupId > com.google.zxing</groupId>
<artifactId > core</artifactId>
<version > ${google.zxing.version}</version>
</dependency>
<dependency >
<groupId > com.google.zxing</groupId>
<artifactId > javase</artifactId>
<version > ${google.zxing.version}</version>
2019-11-14 14:41:48 +01:00
<exclusions >
<exclusion >
<groupId > com.beust</groupId>
<artifactId > jcommander</artifactId>
</exclusion>
</exclusions>
2015-07-17 13:45:43 +02:00
</dependency>
<!-- Email Test Servers -->
<dependency >
<groupId > com.icegreen</groupId>
<artifactId > greenmail</artifactId>
<version > ${greenmail.version}</version>
<scope > test</scope>
</dependency>
2016-05-16 22:31:23 +02:00
<dependency >
<groupId > org.subethamail</groupId>
<artifactId > subethasmtp</artifactId>
<version > ${subethasmtp.version}</version>
<scope > test</scope>
</dependency>
2015-07-17 13:45:43 +02:00
<!-- Apache DS -->
2020-05-13 15:58:20 +03:00
<dependency >
<groupId > org.apache.directory.server</groupId>
<artifactId > apacheds-core</artifactId>
<version > ${apacheds.version}</version>
</dependency>
<dependency >
<groupId > org.apache.directory.server</groupId>
<artifactId > apacheds-core-api</artifactId>
<version > ${apacheds.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.apache.directory.server</groupId>
<artifactId > apacheds-core-annotations</artifactId>
<version > ${apacheds.version}</version>
</dependency>
<dependency >
<groupId > org.apache.directory.server</groupId>
<artifactId > apacheds-interceptor-kerberos</artifactId>
<version > ${apacheds.version}</version>
</dependency>
<dependency >
<groupId > org.apache.directory.server</groupId>
<artifactId > apacheds-server-annotations</artifactId>
<version > ${apacheds.version}</version>
</dependency>
<dependency >
<groupId > org.apache.directory.api</groupId>
<artifactId > api-ldap-codec-standalone</artifactId>
<version > ${apacheds.codec.version}</version>
</dependency>
<dependency >
<groupId > org.apache.jmeter</groupId>
<artifactId > ApacheJMeter_java</artifactId>
<version > ${jmeter.version}</version>
<scope > test</scope>
</dependency>
<dependency >
2019-02-15 21:00:46 +01:00
<groupId > org.dom4j</groupId>
2015-07-17 13:45:43 +02:00
<artifactId > dom4j</artifactId>
<version > ${dom4j.version}</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > xml-apis</groupId>
<artifactId > xml-apis</artifactId>
<version > ${xml-apis.version}</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
2023-05-05 13:57:45 +02:00
<artifactId > slf4j-reload4j</artifactId>
2015-07-17 13:45:43 +02:00
<version > ${slf4j.version}</version>
<scope > test</scope>
</dependency>
<!-- Needed for picketlink perf test -->
<dependency >
2024-02-07 11:57:23 -05:00
<groupId > com.mysql</groupId>
2023-07-05 10:12:50 -03:00
<artifactId > mysql-connector-j</artifactId>
2022-11-30 00:04:56 +01:00
<version > ${mysql-jdbc.version}</version>
2015-07-17 13:45:43 +02:00
</dependency>
2023-08-21 22:23:08 +02:00
<dependency >
<groupId > org.wildfly.common</groupId>
<artifactId > wildfly-common</artifactId>
2023-09-05 23:19:39 +02:00
<version > ${wildfly.common.quarkus.aligned.version}</version>
2023-08-21 22:23:08 +02:00
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-controller</artifactId>
<version > ${wildfly.core.version}</version>
</dependency>
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-server</artifactId>
<version > ${wildfly.core.version}</version>
2023-06-12 11:57:16 +02:00
<exclusions >
<exclusion >
<groupId > io.smallrye</groupId>
<artifactId > jandex</artifactId>
</exclusion>
</exclusions>
2015-07-17 13:45:43 +02:00
</dependency>
<dependency >
<groupId > org.wildfly</groupId>
<artifactId > wildfly-ee</artifactId>
<version > ${wildfly.version}</version>
</dependency>
2021-02-05 20:23:49 +01:00
<dependency >
<groupId > org.wildfly</groupId>
<artifactId > wildfly-galleon-pack</artifactId>
<version > ${wildfly.version}</version>
<type > zip</type>
</dependency>
<dependency >
<groupId > org.wildfly</groupId>
<artifactId > wildfly-galleon-pack</artifactId>
<version > ${wildfly.version}</version>
<type > pom</type>
</dependency>
<dependency >
2021-06-22 19:50:09 +02:00
<groupId > ${ee.maven.groupId}</groupId>
2021-02-05 20:23:49 +01:00
<artifactId > wildfly-ee-galleon-pack</artifactId>
<version > ${wildfly.version}</version>
<type > zip</type>
</dependency>
<dependency >
2021-06-22 19:50:09 +02:00
<groupId > ${ee.maven.groupId}</groupId>
2021-02-05 20:23:49 +01:00
<artifactId > wildfly-servlet-galleon-pack</artifactId>
2021-06-22 19:50:09 +02:00
<version > ${ee.maven.version}</version>
2021-02-05 20:23:49 +01:00
<type > zip</type>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.wildfly</groupId>
<artifactId > wildfly-web-feature-pack</artifactId>
<version > ${wildfly.version}</version>
<type > zip</type>
</dependency>
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-subsystem-test</artifactId>
<version > ${wildfly.core.version}</version>
<type > pom</type>
<scope > test</scope>
</dependency>
<dependency >
2023-08-29 09:51:12 +02:00
<groupId > ${ee.maven.groupId}</groupId>
2015-07-17 13:45:43 +02:00
<artifactId > wildfly-undertow</artifactId>
<version > ${wildfly.version}</version>
<scope > test</scope>
2017-09-15 09:55:42 +02:00
<exclusions >
<exclusion >
<groupId > io.undertow.jastow</groupId>
<artifactId > jastow</artifactId>
</exclusion>
</exclusions>
2015-07-17 13:45:43 +02:00
</dependency>
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-subsystem-test-framework</artifactId>
<version > ${wildfly.core.version}</version>
<scope > test</scope>
</dependency>
2021-02-05 20:23:49 +01:00
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-core-feature-pack-common</artifactId>
<type > pom</type>
<version > ${wildfly.core.version}</version>
</dependency>
<dependency >
<groupId > org.wildfly.core</groupId>
2023-01-04 16:38:14 +01:00
<artifactId > wildfly-core-feature-pack-ee-9-api</artifactId>
2021-02-05 20:23:49 +01:00
<type > pom</type>
<version > ${wildfly.core.version}</version>
</dependency>
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-core-feature-pack-galleon-common</artifactId>
<type > pom</type>
<version > ${wildfly.core.version}</version>
</dependency>
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-core-feature-pack-galleon-pruned</artifactId>
<type > pom</type>
<version > ${wildfly.core.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-core-feature-pack</artifactId>
<type > pom</type>
<version > ${wildfly.core.version}</version>
</dependency>
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-core-feature-pack</artifactId>
<type > zip</type>
<version > ${wildfly.core.version}</version>
</dependency>
2021-02-05 20:23:49 +01:00
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-core-galleon-pack</artifactId>
<type > pom</type>
<version > ${wildfly.core.version}</version>
</dependency>
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-core-galleon-pack</artifactId>
<type > zip</type>
<version > ${wildfly.core.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-version</artifactId>
<version > ${wildfly.core.version}</version>
</dependency>
<dependency >
2023-08-29 09:51:12 +02:00
<groupId > ${ee.maven.groupId}</groupId>
2015-07-17 13:45:43 +02:00
<artifactId > wildfly-web-common</artifactId>
<version > ${wildfly.version}</version>
</dependency>
2017-03-24 11:32:08 -03:00
<dependency >
<groupId > org.wildfly.security.elytron-web</groupId>
<artifactId > undertow-server</artifactId>
2017-08-28 12:06:37 +02:00
<version > ${elytron.undertow-server.version}</version>
2017-03-24 11:32:08 -03:00
</dependency>
2024-02-07 11:57:23 -05:00
<dependency >
<groupId > org.wildfly.security</groupId>
<artifactId > wildfly-elytron-http-oidc</artifactId>
<version > ${wildfly-elytron.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.liquibase</groupId>
<artifactId > liquibase-core</artifactId>
<version > ${liquibase.version}</version>
2022-12-09 12:00:04 -03:00
<exclusions >
<exclusion >
<groupId > org.yaml</groupId>
<artifactId > snakeyaml</artifactId>
</exclusion>
<exclusion >
<groupId > org.apache.commons</groupId>
<artifactId > commons-text</artifactId>
</exclusion>
</exclusions>
2015-07-17 13:45:43 +02:00
</dependency>
<!-- keycloak -->
2015-11-18 15:09:32 +01:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-client-registration-api</artifactId>
<version > ${project.version}</version>
</dependency>
2015-10-01 14:27:51 -04:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-common</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-core</artifactId>
<version > ${project.version}</version>
</dependency>
2022-06-29 07:17:09 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-core</artifactId>
<type > test-jar</type>
<version > ${project.version}</version>
</dependency>
2022-05-10 14:25:01 +01:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-config-api</artifactId>
<version > ${project.version}</version>
</dependency>
2015-09-30 13:13:17 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-client-api</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-kerberos-federation</artifactId>
<version > ${project.version}</version>
</dependency>
2016-07-11 18:27:21 -03:00
<!-- Dependencies for RHEL IdM -->
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-sssd-federation</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-ldap-federation</artifactId>
<version > ${project.version}</version>
2024-12-02 14:59:21 -03:00
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-ipatuura-federation</artifactId>
<version > ${project.version}</version>
2015-07-17 13:45:43 +02:00
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-dependencies-server-min</artifactId>
<version > ${project.version}</version>
<type > pom</type>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-dependencies-server-all</artifactId>
<version > ${project.version}</version>
<type > pom</type>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2016-01-21 13:51:01 +01:00
<artifactId > keycloak-themes</artifactId>
2015-07-17 13:45:43 +02:00
<version > ${project.version}</version>
</dependency>
2024-11-29 08:37:26 +01:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-themes-vendor</artifactId>
<version > ${project.version}</version>
</dependency>
2015-09-04 15:56:28 -04:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-adapter-spi</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
2024-06-19 19:52:07 +02:00
<artifactId > keycloak-admin-client-jee-tests</artifactId>
2015-07-17 13:45:43 +02:00
<version > ${project.version}</version>
</dependency>
2023-01-04 16:38:14 +01:00
<dependency >
<groupId > org.keycloak</groupId>
2024-06-19 19:52:07 +02:00
<artifactId > keycloak-admin-client-tests</artifactId>
2023-01-04 16:38:14 +01:00
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-jboss-adapter-core</artifactId>
<version > ${project.version}</version>
</dependency>
2017-03-24 11:32:08 -03:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-wildfly-elytron-adapter</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
2016-01-15 18:44:17 -05:00
<artifactId > keycloak-server-spi</artifactId>
2015-07-17 13:45:43 +02:00
<version > ${project.version}</version>
</dependency>
2016-11-09 09:40:31 +01:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-server-spi-private</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-model-jpa</artifactId>
<version > ${project.version}</version>
</dependency>
2022-05-26 15:48:12 +02:00
<dependency >
<groupId > org.keycloak</groupId>
2024-01-24 15:39:29 +01:00
<artifactId > keycloak-model-storage</artifactId>
2022-05-26 15:48:12 +02:00
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2024-01-24 15:39:29 +01:00
<artifactId > keycloak-model-storage-private</artifactId>
2022-05-26 15:48:12 +02:00
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2024-01-24 15:39:29 +01:00
<artifactId > keycloak-model-storage-services</artifactId>
2022-05-26 15:48:12 +02:00
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
2016-01-20 14:52:04 -05:00
<artifactId > keycloak-model-infinispan</artifactId>
2015-07-17 13:45:43 +02:00
<version > ${project.version}</version>
</dependency>
2021-06-26 17:35:40 +02:00
<dependency >
<groupId > org.keycloak</groupId>
2015-07-17 13:45:43 +02:00
<artifactId > launcher</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-core</artifactId>
<version > ${project.version}</version>
</dependency>
2016-04-12 15:19:46 -04:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-core-public</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-adapter-api-public</artifactId>
<version > ${project.version}</version>
</dependency>
2015-09-17 14:00:57 -04:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-adapter-core</artifactId>
<version > ${project.version}</version>
2015-09-25 15:12:14 -04:00
</dependency>
2023-05-22 11:19:30 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-adapter-galleon-pack</artifactId>
<version > ${project.version}</version>
<type > zip</type>
</dependency>
2024-04-23 09:36:36 -07:00
<dependency >
2015-09-22 20:27:08 -04:00
<groupId > org.keycloak</groupId>
2015-11-09 15:12:01 +01:00
<artifactId > keycloak-saml-wildfly-subsystem</artifactId>
2015-09-29 20:24:59 -04:00
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-services</artifactId>
<version > ${project.version}</version>
</dependency>
2024-03-21 10:28:34 -04:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-services</artifactId>
<version > ${project.version}</version>
<type > test-jar</type>
</dependency>
2016-06-17 02:07:34 -03:00
<!-- Authorization -->
<dependency >
<groupId > org.keycloak</groupId>
2024-07-17 12:11:26 +02:00
<artifactId > keycloak-authz-client-tests</artifactId>
2016-06-17 02:07:34 -03:00
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2016-06-17 11:04:48 -03:00
<artifactId > keycloak-authz-policy-common</artifactId>
2016-06-17 02:07:34 -03:00
<version > ${project.version}</version>
</dependency>
2020-09-25 16:50:58 +02:00
<!-- Quarkus -->
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-quarkus-server</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-quarkus-server-deployment</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-quarkus-server-app</artifactId>
<version > ${project.version}</version>
</dependency>
2023-04-06 20:53:23 -03:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-junit5</artifactId>
<version > ${project.version}</version>
</dependency>
2023-04-13 15:41:40 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-account-ui</artifactId>
<version > ${project.version}</version>
</dependency>
2021-09-15 10:09:06 -04:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-admin-ui</artifactId>
2023-03-13 19:16:12 +01:00
<version > ${project.version}</version>
2021-09-15 10:09:06 -04:00
</dependency>
2023-01-19 13:06:21 +01:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-rest-admin-ui-ext</artifactId>
<version > ${project.version}</version>
</dependency>
2024-12-17 13:49:11 +01:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-wildfly-modules</artifactId>
<version > ${project.version}</version>
<type > zip</type>
</dependency>
2020-06-09 19:05:00 -03:00
<dependency >
<groupId > org.keycloak</groupId>
2022-02-01 09:42:09 +01:00
<artifactId > keycloak-quarkus-dist</artifactId>
2020-06-09 19:05:00 -03:00
<version > ${project.version}</version>
<type > zip</type>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-util-embedded-ldap</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2016-06-22 13:40:21 +02:00
<artifactId > keycloak-api-docs-dist</artifactId>
2015-07-17 13:45:43 +02:00
<version > ${project.version}</version>
<type > zip</type>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-server-feature-pack</artifactId>
<version > ${project.version}</version>
<type > zip</type>
</dependency>
2017-08-30 07:59:47 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-testsuite-utils</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 13:45:43 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-testsuite-tools</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-testsuite-tools</artifactId>
<version > ${project.version}</version>
<classifier > classes</classifier>
</dependency>
2022-06-21 11:17:45 +02:00
<dependency >
<groupId > org.keycloak</groupId>
2022-06-29 07:17:09 +02:00
<artifactId > keycloak-crypto-default</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-crypto-fips1402</artifactId>
2022-06-21 11:17:45 +02:00
<version > ${project.version}</version>
</dependency>
2016-10-31 22:00:43 +01:00
<dependency >
<groupId > org.keycloak</groupId>
2022-09-27 01:53:46 -05:00
<artifactId > keycloak-crypto-elytron</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2016-10-31 22:00:43 +01:00
<artifactId > keycloak-admin-cli</artifactId>
<version > ${project.version}</version>
</dependency>
2016-07-12 15:30:33 +02:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-client-cli-dist</artifactId>
<version > ${project.version}</version>
<type > zip</type>
</dependency>
2019-10-01 22:17:38 +09:00
<!-- webauthn support -->
<dependency >
<groupId > com.webauthn4j</groupId>
<artifactId > webauthn4j-core</artifactId>
<version > ${webauthn4j.version}</version>
</dependency>
<dependency >
<groupId > com.webauthn4j</groupId>
<artifactId > webauthn4j-util</artifactId>
<version > ${webauthn4j.version}</version>
</dependency>
2019-11-05 17:23:09 +09:00
<dependency >
<groupId > org.apache.kerby</groupId>
<artifactId > kerby-asn1</artifactId>
<version > ${org.apache.kerby.kerby-asn1.version}</version>
</dependency>
2019-10-23 16:30:28 +02:00
<dependency >
<groupId > commons-lang</groupId>
<artifactId > commons-lang</artifactId>
<version > ${commons-lang.version}</version>
</dependency>
2023-05-30 13:41:25 -04:00
2021-02-05 20:23:49 +01:00
<!-- used in server - dist build while provisioning the distribution -->
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-server-galleon-pack</artifactId>
<version > ${project.version}</version>
<type > zip</type>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-server-galleon-pack</artifactId>
<version > ${project.version}</version>
<type > pom</type>
</dependency>
<!-- WildFly Galleon Plugins -->
<dependency >
<groupId > org.wildfly.galleon-plugins</groupId>
<artifactId > wildfly-galleon-plugins</artifactId>
<version > ${org.wildfly.galleon-plugins.version}</version>
<exclusions >
<exclusion >
<groupId > org.jboss.galleon</groupId>
<artifactId > *</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency >
<groupId > org.wildfly.galleon-plugins</groupId>
<artifactId > wildfly-config-gen</artifactId>
<version > ${org.wildfly.galleon-plugins.version}</version>
<exclusions >
<exclusion >
<groupId > *</groupId>
<artifactId > *</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency >
<groupId > org.wildfly.galleon-plugins</groupId>
<artifactId > transformer</artifactId>
<version > ${org.wildfly.galleon-plugins.version}</version>
<exclusions >
<exclusion >
<groupId > *</groupId>
<artifactId > *</artifactId>
</exclusion>
</exclusions>
</dependency>
2023-01-09 10:57:57 +01:00
<!-- JavaEE dependencies - used for adapters -->
<dependency >
<groupId > org.jboss.spec.javax.servlet</groupId>
<artifactId > jboss-servlet-api_3.0_spec</artifactId>
<version > ${servlet.api.30.version}</version>
</dependency>
<dependency >
<groupId > org.jboss.spec.javax.ws.rs</groupId>
<artifactId > jboss-jaxrs-api_2.1_spec</artifactId>
<version > ${jboss-jaxrs-api_2.1_spec}</version>
</dependency>
<dependency >
<groupId > org.jboss.spec.javax.servlet</groupId>
<artifactId > jboss-servlet-api_4.0_spec</artifactId>
<version > ${jboss-servlet-api_4.0_spec}</version>
</dependency>
2024-01-15 09:20:47 +01:00
2023-05-22 11:19:30 +02:00
<!-- Galleon layer testing with WildFly Glow -->
<dependency >
<groupId > org.wildfly.glow</groupId>
<artifactId > wildfly-glow-core</artifactId>
<scope > test</scope>
<version > ${version.org.wildfly.glow}</version>
</dependency>
<dependency >
<groupId > org.wildfly.glow</groupId>
<artifactId > wildfly-glow-maven-resolver</artifactId>
<scope > test</scope>
<version > ${version.org.wildfly.glow}</version>
</dependency>
2024-03-18 17:05:53 +01:00
<dependency >
<groupId > com.apicatalog</groupId>
<artifactId > titanium-json-ld</artifactId>
<version > ${com.apicatalog.titanium-json-ld.version}</version>
</dependency>
<dependency >
<groupId > io.setl</groupId>
<artifactId > rdf-urdna</artifactId>
<version > ${io.setl.rdf-urdna.version}</version>
</dependency>
2024-07-03 09:03:58 +01:00
2024-07-25 14:54:00 +01:00
<dependency >
<groupId > org.infinispan</groupId>
<artifactId > infinispan-core</artifactId>
<type > test-jar</type>
<version > ${infinispan.version}</version>
</dependency>
2024-07-03 09:03:58 +01:00
2015-07-17 13:45:43 +02:00
</dependencies>
</dependencyManagement>
<build >
<pluginManagement >
<plugins >
2016-03-29 11:32:08 +02:00
<plugin >
<groupId > org.sonatype.plugins</groupId>
<artifactId > nexus-staging-maven-plugin</artifactId>
<version > ${nexus.staging.plugin.version}</version>
<extensions > true</extensions>
<configuration >
2022-03-15 08:59:11 +01:00
<serverId > ${jboss.releases.repo.id}</serverId>
<nexusUrl > ${jboss.repo.nexusUrl}</nexusUrl>
2016-03-29 11:32:08 +02:00
</configuration>
</plugin>
2023-02-14 11:44:53 +01:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-shade-plugin</artifactId>
<version > ${shade.plugin.version}</version>
</plugin>
2015-09-18 13:23:54 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2017-03-13 13:28:51 -04:00
<artifactId > maven-assembly-plugin</artifactId>
<configuration >
<tarLongFileMode > posix</tarLongFileMode>
</configuration>
</plugin>
2021-02-05 20:23:49 +01:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-dependency-plugin</artifactId>
<version > 3.1.2</version>
</plugin>
2017-03-13 13:28:51 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2015-09-18 13:23:54 +02:00
<artifactId > maven-release-plugin</artifactId>
<version > 2.5.2</version>
<configuration >
<autoVersionSubmodules > true</autoVersionSubmodules>
<tagNameFormat > @{project.version}</tagNameFormat>
</configuration>
</plugin>
2015-07-17 13:45:43 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
2022-11-30 00:04:56 +01:00
<version > ${surefire-plugin.version}</version>
2015-07-17 13:45:43 +02:00
<configuration >
2022-12-15 10:14:30 +01:00
<argLine > -Djava.awt.headless=true ${surefire.memory.settings} ${surefire.system.args} -Duser.language=en -Duser.region=US -XX:+ExitOnOutOfMemoryError -XX:+HeapDumpOnOutOfMemoryError</argLine>
2019-08-15 22:12:25 +02:00
<runOrder > alphabetical</runOrder>
2022-06-21 09:18:40 +02:00
<failIfNoSpecifiedTests > false</failIfNoSpecifiedTests>
2015-07-17 13:45:43 +02:00
</configuration>
</plugin>
2017-03-23 11:59:19 +01:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-jar-plugin</artifactId>
</plugin>
2023-06-29 17:46:28 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-plugin-plugin</artifactId>
2024-02-01 11:37:20 +01:00
<version > ${maven.plugins.version}</version>
2023-06-29 17:46:28 +02:00
</plugin>
2016-12-22 16:18:24 -05:00
<plugin >
<groupId > com.google.code.maven-replacer-plugin</groupId>
<artifactId > maven-replacer-plugin</artifactId>
<version > ${replacer.plugin.version}</version>
</plugin>
2015-07-17 13:45:43 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-install-plugin</artifactId>
<configuration >
<createChecksum > true</createChecksum>
</configuration>
</plugin>
2024-06-21 14:19:31 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-javadoc-plugin</artifactId>
<configuration >
<doclint > none</doclint>
<failOnError > false</failOnError>
<excludePackageNames > cx.*:org.freedesktop*:org.jvnet*</excludePackageNames>
</configuration>
</plugin>
2015-07-17 13:45:43 +02:00
<plugin >
<groupId > com.lazerycode.jmeter</groupId>
<artifactId > jmeter-maven-plugin</artifactId>
<version > ${jmeter.plugin.version}</version>
</plugin>
<plugin >
<groupId > com.lazerycode.jmeter</groupId>
<artifactId > jmeter-analysis-maven-plugin</artifactId>
<version > ${jmeter.analysis.plugin.version}</version>
</plugin>
<plugin >
<groupId > org.jboss.as.plugins</groupId>
<artifactId > jboss-as-maven-plugin</artifactId>
<version > ${jboss.as.plugin.version}</version>
<configuration >
<skip > true</skip>
</configuration>
</plugin>
<plugin >
<groupId > org.wildfly.plugins</groupId>
<artifactId > wildfly-maven-plugin</artifactId>
<version > ${wildfly.plugin.version}</version>
<configuration >
<skip > true</skip>
</configuration>
</plugin>
2021-06-22 19:50:09 +02:00
<plugin >
<groupId > org.jboss.galleon</groupId>
<artifactId > galleon-maven-plugin</artifactId>
<version > ${org.jboss.galleon.version}</version>
</plugin>
2015-07-17 13:45:43 +02:00
<plugin >
<groupId > org.liquibase</groupId>
<artifactId > liquibase-maven-plugin</artifactId>
<version > ${liquibase.version}</version>
</plugin>
<plugin >
<groupId > org.wildfly.build</groupId>
<artifactId > wildfly-server-provisioning-maven-plugin</artifactId>
<version > ${wildfly.build-tools.version}</version>
</plugin>
2023-05-30 13:41:25 -04:00
<plugin >
<groupId > io.smallrye</groupId>
<artifactId > smallrye-open-api-maven-plugin</artifactId>
<version > ${smallrye.openapi.generator.plugin.version}</version>
</plugin>
<plugin >
<groupId > org.openapitools</groupId>
<artifactId > openapi-generator-maven-plugin</artifactId>
<version > ${openapi.generator.plugin.version}</version>
</plugin>
2021-02-05 20:23:49 +01:00
<plugin >
<groupId > org.wildfly.galleon-plugins</groupId>
<artifactId > wildfly-galleon-maven-plugin</artifactId>
<version > ${org.wildfly.galleon-plugins.version}</version>
<dependencies >
<!-- feature - spec - gen uses wildfly - embedded to generate the feature specs, hence the designated wildfly - embedded version must match the pack one -->
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-embedded</artifactId>
<version > ${wildfly.core.version}</version>
</dependency>
<!-- If you add a dependency on wildfly - embedded you need to bring your own transitives -->
<dependency >
<groupId > org.wildfly.common</groupId>
<artifactId > wildfly-common</artifactId>
2023-09-05 23:19:39 +02:00
<version > ${wildfly.common.wildfly.aligned.version}</version>
2021-02-05 20:23:49 +01:00
</dependency>
</dependencies>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-verifier-plugin</artifactId>
<version > ${verifier.plugin.version}</version>
<executions >
<execution >
<id > main</id>
<phase > verify</phase>
<goals >
<goal > verify</goal>
</goals>
</execution>
</executions>
<configuration >
<verificationFile > target/verifier/verifications.xml</verificationFile>
</configuration>
</plugin>
Port forward license data from maintenance, with improvements.
org.keycloak dependencies will be automatically added to the xml during the
build, removing the need for runs of download-license-files.sh every time the
keycloak version changes.
Documentation on "why and how" for the license data has also been added.
To reduce code duplication issues, plugin definitions are stored in
keycloak-parent, but only active in the projects that need them (not bound to
any phase by default). Also, the common files have been moved into
licenses/common/, so that a single symlink will suffice to replicate the
current and future files needed by the plugin executions. While the
assembly.xml definitions remain duplicated, they are fairly minimal and
shouldn't need to change often.
License data is available for all adapters shipped in the product, plus
server-feature-pack.
The keycloak slot is populated with data, in addition to the rh-sso slot. A
number of the adapters don't depend on any third-party artifacts, so they have
(mostly) blank license.xml files.
2017-09-20 15:53:24 -06:00
<plugin >
2017-11-27 10:31:31 -07:00
<groupId > org.keycloak</groupId>
<artifactId > keycloak-distribution-licenses-maven-plugin</artifactId>
<version > ${project.version}</version>
Port forward license data from maintenance, with improvements.
org.keycloak dependencies will be automatically added to the xml during the
build, removing the need for runs of download-license-files.sh every time the
keycloak version changes.
Documentation on "why and how" for the license data has also been added.
To reduce code duplication issues, plugin definitions are stored in
keycloak-parent, but only active in the projects that need them (not bound to
any phase by default). Also, the common files have been moved into
licenses/common/, so that a single symlink will suffice to replicate the
current and future files needed by the plugin executions. While the
assembly.xml definitions remain duplicated, they are fairly minimal and
shouldn't need to change often.
License data is available for all adapters shipped in the product, plus
server-feature-pack.
The keycloak slot is populated with data, in addition to the rh-sso slot. A
number of the adapters don't depend on any third-party artifacts, so they have
(mostly) blank license.xml files.
2017-09-20 15:53:24 -06:00
<executions >
<execution >
2017-11-27 10:31:31 -07:00
<id > process-licenses</id>
Port forward license data from maintenance, with improvements.
org.keycloak dependencies will be automatically added to the xml during the
build, removing the need for runs of download-license-files.sh every time the
keycloak version changes.
Documentation on "why and how" for the license data has also been added.
To reduce code duplication issues, plugin definitions are stored in
keycloak-parent, but only active in the projects that need them (not bound to
any phase by default). Also, the common files have been moved into
licenses/common/, so that a single symlink will suffice to replicate the
current and future files needed by the plugin executions. While the
assembly.xml definitions remain duplicated, they are fairly minimal and
shouldn't need to change often.
License data is available for all adapters shipped in the product, plus
server-feature-pack.
The keycloak slot is populated with data, in addition to the rh-sso slot. A
number of the adapters don't depend on any third-party artifacts, so they have
(mostly) blank license.xml files.
2017-09-20 15:53:24 -06:00
<goals >
2017-11-27 10:31:31 -07:00
<goal > process</goal>
Port forward license data from maintenance, with improvements.
org.keycloak dependencies will be automatically added to the xml during the
build, removing the need for runs of download-license-files.sh every time the
keycloak version changes.
Documentation on "why and how" for the license data has also been added.
To reduce code duplication issues, plugin definitions are stored in
keycloak-parent, but only active in the projects that need them (not bound to
any phase by default). Also, the common files have been moved into
licenses/common/, so that a single symlink will suffice to replicate the
current and future files needed by the plugin executions. While the
assembly.xml definitions remain duplicated, they are fairly minimal and
shouldn't need to change often.
License data is available for all adapters shipped in the product, plus
server-feature-pack.
The keycloak slot is populated with data, in addition to the rh-sso slot. A
number of the adapters don't depend on any third-party artifacts, so they have
(mostly) blank license.xml files.
2017-09-20 15:53:24 -06:00
</goals>
2017-11-27 10:31:31 -07:00
<phase > process-resources</phase>
Port forward license data from maintenance, with improvements.
org.keycloak dependencies will be automatically added to the xml during the
build, removing the need for runs of download-license-files.sh every time the
keycloak version changes.
Documentation on "why and how" for the license data has also been added.
To reduce code duplication issues, plugin definitions are stored in
keycloak-parent, but only active in the projects that need them (not bound to
any phase by default). Also, the common files have been moved into
licenses/common/, so that a single symlink will suffice to replicate the
current and future files needed by the plugin executions. While the
assembly.xml definitions remain duplicated, they are fairly minimal and
shouldn't need to change often.
License data is available for all adapters shipped in the product, plus
server-feature-pack.
The keycloak slot is populated with data, in addition to the rh-sso slot. A
number of the adapters don't depend on any third-party artifacts, so they have
(mostly) blank license.xml files.
2017-09-20 15:53:24 -06:00
</execution>
</executions>
</plugin>
2023-02-14 11:44:53 +01:00
<plugin >
<groupId > org.asciidoctor</groupId>
<artifactId > asciidoctor-maven-plugin</artifactId>
2023-05-17 17:34:32 +02:00
<version > ${asciidoctor.plugin.version}</version>
2023-02-14 11:44:53 +01:00
</plugin>
2023-11-07 10:31:58 +01:00
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > build-helper-maven-plugin</artifactId>
<version > ${build-helper-maven-plugin.version}</version>
</plugin>
2024-06-13 12:52:37 +01:00
<plugin >
2024-07-03 09:03:58 +01:00
<groupId > org.infinispan.protostream</groupId>
2024-06-13 12:52:37 +01:00
<artifactId > proto-schema-compatibility-maven-plugin</artifactId>
2024-10-04 10:58:12 +01:00
<version > ${protostream.plugin.version}</version>
2024-06-13 12:52:37 +01:00
<configuration >
<commitProtoLock > ${commitProtoLockChanges}</commitProtoLock>
2024-10-08 15:22:41 +01:00
<skip > ${skipProtoLock}</skip>
2024-06-13 12:52:37 +01:00
</configuration>
</plugin>
2015-07-17 13:45:43 +02:00
</plugins>
</pluginManagement>
</build>
<profiles >
2017-05-08 14:35:17 +02:00
<profile >
<id > testsuite</id>
<activation >
<property >
<name > !skipTestsuite</name>
</property>
</activation>
<modules >
<module > testsuite</module>
</modules>
</profile>
2024-12-06 08:16:11 +01:00
<profile >
<id > adapters</id>
<activation >
<property >
<name > !skipAdapters</name>
</property>
</activation>
<modules >
<module > adapters</module>
</modules>
</profile>
<profile >
<id > docs</id>
<activation >
<property >
<name > !skipDocs</name>
</property>
</activation>
<modules >
<module > docs</module>
</modules>
</profile>
2017-05-08 14:35:17 +02:00
2023-08-29 09:51:12 +02:00
<!-- Profile to activate EAP8 Adapters Build -->
<profile >
<id > eap8-adapters</id>
<activation >
<property >
<name > eap8-adapters</name>
</property>
</activation>
<properties >
<ee.maven.groupId > org.jboss.eap</ee.maven.groupId>
<ee.maven.version > ${eap8.version}</ee.maven.version>
<wildfly.version > ${eap8.version}</wildfly.version>
<wildfly.build-tools.version > ${eap8.wildfly.build-tools.version}</wildfly.build-tools.version>
<wildfly.core.version > ${eap8.wildfly.core.version}</wildfly.core.version>
2024-11-28 13:31:45 +01:00
<!-- relative directory for galleon pack with layer spec files -->
<saml.adapter.galleon.pack.metadata.dir > non-metadata</saml.adapter.galleon.pack.metadata.dir>
<!-- WildFly Galleon Build related properties -->
<org.wildfly.galleon-plugins.version > 6.4.2.Final</org.wildfly.galleon-plugins.version>
<org.jboss.galleon.version > 5.1.0.Final</org.jboss.galleon.version>
<org.wildfly.maven.plugins.licenses-plugin.version > 2.3.1.Final</org.wildfly.maven.plugins.licenses-plugin.version>
2023-08-29 09:51:12 +02:00
</properties>
</profile>
<profile >
<id > upstream-adapters</id>
<activation >
<property >
<name > !eap8-adapters</name>
</property>
</activation>
<properties >
<ee.maven.groupId > org.wildfly</ee.maven.groupId>
<ee.maven.version > ${upstream.wildfly.version}</ee.maven.version>
<wildfly.version > ${upstream.wildfly.version}</wildfly.version>
<wildfly.build-tools.version > ${upstream.wildfly.build-tools.version}</wildfly.build-tools.version>
<wildfly.core.version > ${upstream.wildfly.core.version}</wildfly.core.version>
2024-11-28 13:31:45 +01:00
<!-- relative directory for galleon pack with layer spec files -->
<saml.adapter.galleon.pack.metadata.dir > metadata</saml.adapter.galleon.pack.metadata.dir>
<!-- WildFly Galleon Build related properties -->
<org.wildfly.galleon-plugins.version > 6.5.2.Final</org.wildfly.galleon-plugins.version>
<org.jboss.galleon.version > 5.2.2.Final</org.jboss.galleon.version>
<org.wildfly.maven.plugins.licenses-plugin.version > 2.3.1.Final</org.wildfly.maven.plugins.licenses-plugin.version>
2023-08-29 09:51:12 +02:00
</properties>
</profile>
2015-07-17 13:45:43 +02:00
<profile >
<id > distribution</id>
<modules >
<module > distribution</module>
</modules>
</profile>
2015-09-17 09:13:48 +02:00
2015-07-17 13:45:43 +02:00
<profile >
<id > jboss-release</id>
<modules >
<module > distribution</module>
</modules>
</profile>
2015-09-17 09:13:48 +02:00
2022-01-12 08:06:10 +00:00
<profile >
<id > operator</id>
<activation >
<property >
<name > operator</name>
</property>
</activation>
2023-06-01 13:39:41 +02:00
<modules >
<module > operator</module>
</modules>
</profile>
<profile >
<id > operator-prod</id>
<activation >
<property >
<name > operator-prod</name>
</property>
</activation>
2022-01-12 08:06:10 +00:00
<modules >
<module > operator</module>
</modules>
</profile>
2016-03-29 11:32:08 +02:00
<profile >
<id > nexus-staging</id>
<build >
<plugins >
<plugin >
<groupId > org.sonatype.plugins</groupId>
<artifactId > nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
2019-10-08 11:20:37 +02:00
2024-10-24 12:19:09 +02:00
<profile >
<id > nexus3-staging</id>
<build >
<plugins >
<plugin >
<groupId > org.sonatype.plugins</groupId>
<artifactId > nxrm3-maven-plugin</artifactId>
<version > ${nexus3.staging.plugin.version}</version>
<extensions > true</extensions>
<configuration >
<serverId > ${jboss.releases.repo.id}</serverId>
<nexusUrl > ${jboss.repo.nexusUrl}</nexusUrl>
<repository > ${jboss.releases.repo.name}</repository>
</configuration>
</plugin>
</plugins>
</build>
</profile>
2022-03-16 16:28:13 +01:00
<profile >
2022-03-17 08:55:40 +01:00
<id > gpg</id>
2022-03-16 16:28:13 +01:00
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-gpg-plugin</artifactId>
2022-03-17 08:55:40 +01:00
<version > 3.0.1</version>
2022-03-16 16:28:13 +01:00
<executions >
<execution >
2022-03-17 08:55:40 +01:00
<id > sign-artifacts</id>
<phase > verify</phase>
2022-03-16 16:28:13 +01:00
<goals >
<goal > sign</goal>
</goals>
2022-03-17 08:55:40 +01:00
<configuration >
<gpgArguments >
<arg > --batch</arg>
<arg > --pinentry-mode</arg>
<arg > loopback</arg>
</gpgArguments>
</configuration>
2022-03-16 16:28:13 +01:00
</execution>
</executions>
2022-03-17 08:55:40 +01:00
<configuration >
</configuration>
2022-03-16 16:28:13 +01:00
</plugin>
</plugins>
</build>
</profile>
2022-06-29 07:17:09 +02:00
<profile >
<id > crypto-default</id>
<activation >
<property >
<name > !fips140-2</name>
</property>
</activation>
<properties >
<keycloak.crypto.artifactId > keycloak-crypto-default</keycloak.crypto.artifactId>
</properties>
</profile>
<profile >
<id > fips140-2</id>
<activation >
<property >
<name > fips140-2</name>
</property>
</activation>
<properties >
<keycloak.crypto.artifactId > keycloak-crypto-fips1402</keycloak.crypto.artifactId>
</properties>
</profile>
2015-07-17 13:45:43 +02:00
</profiles>
2021-06-26 17:35:40 +02:00
</project>