2020-06-10 12:50:45 +00:00
<?xml version='1.0' encoding='UTF-8'?>
2016-02-03 10:20:22 +00:00
<!--
2016-03-29 09:32:08 +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.
2016-09-08 03:19:16 +00:00
2016-03-29 09:32:08 +00:00
-->
2020-06-10 12:50:45 +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" >
2015-07-17 11:45:43 +00:00
<modelVersion > 4.0.0</modelVersion>
<parent >
<groupId > org.jboss</groupId>
<artifactId > jboss-parent</artifactId>
2022-12-15 08:06:00 +00:00
<version > 39</version>
2015-07-17 11:45:43 +00:00
</parent>
<name > Keycloak</name>
<description >
Keycloak SSO
</description>
<groupId > org.keycloak</groupId>
<artifactId > keycloak-parent</artifactId>
2023-03-03 10:11:44 +00:00
<version > 999.0.0-SNAPSHOT</version>
2015-07-17 11:45:43 +00:00
<packaging > pom</packaging>
<properties >
2024-06-21 12:19:31 +00: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>
2023-10-04 06:00:53 +00:00
<project.version.npm > 999.0.0-SNAPSHOT</project.version.npm>
2023-05-17 15:34:32 +00:00
<asciidoctor.plugin.version > 1.5.8</asciidoctor.plugin.version>
2022-03-15 07:59:11 +00: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 10:19:09 +00:00
<jboss.releases.repo.name > keycloak</jboss.releases.repo.name>
2022-03-15 07:59:11 +00: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>
2024-09-27 11:32:11 +00:00
<quarkus.version > 3.15.1</quarkus.version>
<quarkus.build.version > 3.15.1</quarkus.build.version>
2020-06-10 12:50:45 +00:00
2022-10-18 12:43:04 +00:00
<project.build-time > ${timestamp}</project.build-time>
2020-06-10 12:50:45 +00:00
2023-11-07 09:31:58 +00: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 13:13:08 +00:00
<!-- core version for app - server - wildfly/eap tests, should match wildfly/eap server -->
2024-06-12 13:24:58 +00:00
<tests.wildfly.core.version > 21.1.1.Final</tests.wildfly.core.version>
2023-09-20 13:13:08 +00:00
2023-08-29 07:51:12 +00:00
<!-- Upstream WildFly Versions -->
2023-08-30 13:24:09 +00:00
<upstream.wildfly.version > 29.0.0.Final</upstream.wildfly.version>
2023-08-29 07:51:12 +00: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 06:47:24 +00:00
<wildfly.jakarta.adapters > true</wildfly.jakarta.adapters>
2017-03-31 13:50:53 +00:00
2017-08-28 10:06:37 +00:00
<jboss.as.version > 7.2.0.Final</jboss.as.version>
2019-10-08 06:57:33 +00:00
<jboss.as.subsystem.test.version > 7.5.22.Final-redhat-1</jboss.as.subsystem.test.version>
2016-02-09 19:15:23 +00:00
2019-02-15 20:00:46 +00:00
<!-- Versions used mostly for Undertow server, aligned with WildFly -->
2020-06-10 12:50:45 +00:00
<jboss.dmr.version > 1.5.1.Final</jboss.dmr.version>
2022-06-21 09:17:45 +00:00
2024-09-23 18:10:24 +00: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 02:18:40 +00:00
2020-05-06 10:36:52 +00:00
<dom4j.version > 2.1.3</dom4j.version>
2024-09-17 12:18:53 +00:00
<h2.version > 2.3.230</h2.version>
2023-11-20 13:27:13 +00:00
<hibernate-orm.plugin.version > 6.2.13.Final</hibernate-orm.plugin.version>
<hibernate.c3p0.version > 6.2.13.Final</hibernate.c3p0.version>
2024-10-07 14:24:10 +00:00
<infinispan.version > 15.0.10.Final</infinispan.version>
2024-08-22 10:19:06 +00:00
<!-- version number is needed for the proto - schema - compatibility - maven - plugin and needs to be in - sync with the version used in Infinispan -->
<protostream.version > 5.0.8.Final</protostream.version>
2024-10-04 09:58:12 +00:00
<!-- protostream.plugin.version property can be replaced with protostream.version once protostream.version >= 5.0.10.Final -->
2024-10-10 08:44:04 +00:00
<protostream.plugin.version > 5.0.12.Final</protostream.plugin.version>
2023-01-04 15:25:12 +00:00
<!-- JAKARTA -->
2023-03-24 11:23:37 +00:00
<jakarta.mail.version > 2.1.1</jakarta.mail.version>
2024-10-25 15:36:07 +00:00
<angus.mail.version > 2.0.3</angus.mail.version>
2023-01-04 15:25:12 +00:00
<jakarta.xml.ws.version > 4.0.0</jakarta.xml.ws.version>
2023-01-09 09:57:57 +00:00
<jakarta.xml.soap.version > 3.0.0</jakarta.xml.soap.version>
2023-01-04 15:25:12 +00:00
2023-01-09 09:57:57 +00: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 14:50:34 +00: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 06:02:17 +00: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 11:55:47 +00:00
<log4j.version > 1.2.17</log4j.version>
2024-08-16 09:41:34 +00:00
<resteasy.version > 6.2.9.Final</resteasy.version>
2020-01-10 12:12:20 +00:00
<resteasy.undertow.version > ${resteasy.version}</resteasy.undertow.version>
2024-04-12 16:49:19 +00:00
<owasp.html.sanitizer.version > 20240325.1</owasp.html.sanitizer.version>
2023-03-14 17:42:35 +00:00
<slf4j.version > 2.0.6</slf4j.version>
2020-03-24 22:10:34 +00:00
<sun.istack.version > 3.0.10</sun.istack.version>
2023-01-31 01:36:58 +00:00
<sun.saaj.version > 2.0.1</sun.saaj.version>
2020-03-24 22:10:34 +00:00
<sun.xml.bind.version > 2.3.3-b02</sun.xml.bind.version>
2023-01-31 14:47:19 +00:00
<sun.xml.ws.version > 4.0.0</sun.xml.ws.version>
2023-01-04 15:38:14 +00:00
<sun.activation.version > 1.2.2</sun.activation.version>
2020-03-24 22:10:34 +00:00
<org.glassfish.jaxb.xsom.version > 2.3.3-b02</org.glassfish.jaxb.xsom.version>
2023-10-24 14:11:48 +00:00
<undertow.version > ${undertow-legacy.version}</undertow.version>
<undertow-legacy.version > 2.2.24.Final</undertow-legacy.version>
2023-01-09 09:57:57 +00:00
<undertow-jakarta.version > 2.3.2.Final</undertow-jakarta.version>
2024-09-13 18:18:48 +00:00
<wildfly-elytron.version > 2.5.2.Final</wildfly-elytron.version>
2021-03-16 07:10:32 +00:00
<elytron.undertow-server.version > 1.9.0.Final</elytron.undertow-server.version>
2020-03-24 22:10:34 +00:00
<woodstox.version > 6.0.3</woodstox.version>
2023-09-05 21:19:39 +00: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 13:27:44 +00:00
<xmlsec.version > 2.2.6</xmlsec.version>
2023-04-03 18:06:30 +00:00
<nashorn.version > 15.4</nashorn.version>
2023-02-28 23:03:37 +00:00
<ua-parser.version > 1.5.4</ua-parser.version>
2023-07-06 22:56:02 +00:00
<org.yaml.snakeyaml.version > 2.0</org.yaml.snakeyaml.version>
2022-02-16 07:59:05 +00:00
<picketbox.version > 5.0.3.Final</picketbox.version>
2023-01-11 07:48:00 +00:00
<xstream.version > 1.4.20</xstream.version>
2023-02-07 13:59:23 +00:00
<org.snakeyaml.snakeyaml-engine.version > 2.6</org.snakeyaml.snakeyaml-engine.version>
2016-02-09 19:15:23 +00:00
<!-- Others -->
2019-10-23 14:30:28 +00:00
<commons-lang.version > 2.6</commons-lang.version>
2020-05-13 12:58:20 +00:00
<apacheds.version > 2.0.0.AM26</apacheds.version>
<apacheds.codec.version > 2.0.0</apacheds.codec.version>
2020-01-21 14:53:23 +00:00
<google.zxing.version > 3.4.0</google.zxing.version>
2023-07-07 13:40:59 +00:00
<freemarker.version > 2.3.32</freemarker.version>
2024-09-13 10:01:55 +00:00
<sundrio.version > 0.200.0</sundrio.version>
2017-10-17 18:41:44 +00:00
2024-03-18 16:05:53 +00: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 18:18:48 +00:00
<liquibase.version > 4.29.1</liquibase.version>
2016-02-11 08:09:39 +00:00
<servlet.api.30.version > 1.0.2.Final</servlet.api.30.version>
2020-03-23 11:47:37 +00:00
<servlet.api.40.version > 2.0.0.Final</servlet.api.40.version>
2023-02-03 14:28:37 +00:00
<twitter4j.version > 4.1.2</twitter4j.version>
2016-02-09 19:15:23 +00:00
2023-07-05 15:52:02 +00:00
<!-- Databases - also published to db.adoc as "Tested Version" -->
2023-05-08 08:04:03 +00:00
<mysql.version > 8.0</mysql.version>
2024-02-07 16:57:23 +00:00
<mysql-jdbc.version > 8.3.0</mysql-jdbc.version>
2024-05-27 14:17:58 +00:00
<postgresql.version > 16</postgresql.version>
<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 18:18:48 +00:00
<postgresql-jdbc.version > 42.7.4</postgresql-jdbc.version>
2023-05-08 08:04:03 +00:00
<mariadb.version > 10.11</mariadb.version>
2024-09-13 18:18:48 +00:00
<mariadb-jdbc.version > 3.4.1</mariadb-jdbc.version>
2023-05-08 08:04:03 +00:00
<mssql.version > 2022-latest</mssql.version>
2023-09-05 13:38:19 +00:00
<!-- this is the mssql driver version also used in the Quarkus BOM -->
2024-09-13 18:18:48 +00:00
<mssql-jdbc.version > 12.8.1.jre11</mssql-jdbc.version>
2023-05-08 08:04:03 +00:00
<oracledb.version > 19.3</oracledb.version>
2023-09-05 13:38:19 +00:00
<!-- this is the oracle driver version also used in the Quarkus BOM -->
2024-09-13 18:18:48 +00:00
<oracle-jdbc.version > 23.5.0.24.07</oracle-jdbc.version>
2021-03-04 01:39:47 +00:00
2016-02-09 19:15:23 +00:00
<!-- Test -->
2023-03-24 11:23:37 +00:00
<greenmail.version > 2.1.0-alpha-1</greenmail.version>
2015-07-17 11:45:43 +00:00
<jmeter.version > 2.10</jmeter.version>
2021-02-17 10:32:51 +00:00
<junit.version > 4.13.2</junit.version>
2016-02-09 19:15:23 +00:00
<picketlink.version > 2.7.0.Final</picketlink.version>
2022-11-29 23:04:56 +00: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 19:15:23 +00:00
<xml-apis.version > 1.4.01</xml-apis.version>
2016-05-16 20:31:23 +00:00
<subethasmtp.version > 3.1.7</subethasmtp.version>
2022-02-03 08:38:45 +00:00
<assertj-core.version > 3.22.0</assertj-core.version>
2024-09-13 10:01:55 +00:00
2016-02-09 19:15:23 +00:00
<!-- Maven Plugins -->
2024-06-21 12:19:31 +00:00
<maven.plugins.version > 3.13.1</maven.plugins.version>
2023-03-13 18:16:12 +00:00
<replacer.plugin.version > 1.4.1</replacer.plugin.version>
2015-07-17 11:45:43 +00: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 13:24:58 +00:00
<wildfly.plugin.version > 5.0.0.Final</wildfly.plugin.version>
2023-07-04 11:00:04 +00:00
<nexus.staging.plugin.version > 1.6.13</nexus.staging.plugin.version>
2024-10-24 10:19:09 +00:00
<nexus3.staging.plugin.version > 1.0.7</nexus3.staging.plugin.version>
2024-04-02 14:14:58 +00:00
<frontend.plugin.version > 1.15.0</frontend.plugin.version>
2023-01-10 12:55:37 +00:00
<docker.maven.plugin.version > 0.40.3</docker.maven.plugin.version>
2021-02-05 19:23:49 +00:00
<verifier.plugin.version > 1.1</verifier.plugin.version>
2023-02-14 10:44:53 +00:00
<shade.plugin.version > 3.4.1</shade.plugin.version>
2023-10-06 11:41:42 +00:00
<smallrye.openapi.generator.plugin.version > 3.6.2</smallrye.openapi.generator.plugin.version>
2023-05-30 17:41:25 +00:00
<openapi.generator.plugin.version > 6.3.0</openapi.generator.plugin.version>
2023-11-07 09:31:58 +00:00
<build-helper-maven-plugin.version > 3.2.0</build-helper-maven-plugin.version>
2016-11-09 08:40:31 +00:00
2016-02-19 14:29:27 +00:00
<!-- Surefire Settings -->
2019-04-26 21:16:50 +00: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 13:45:05 +00:00
<surefire.memory.metaspace.max > 512m</surefire.memory.metaspace.max>
2019-04-26 21:16:50 +00: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 12:19:31 +00: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 11:53:45 +00:00
2019-10-01 13:17:38 +00:00
<!-- webauthn support -->
2023-08-15 13:40:10 +00:00
<webauthn4j.version > 0.21.5.RELEASE</webauthn4j.version>
2023-03-09 10:05:29 +00:00
<org.apache.kerby.kerby-asn1.version > 2.0.3</org.apache.kerby.kerby-asn1.version>
2019-10-01 13:17:38 +00:00
2021-02-05 19:23:49 +00:00
<!-- WildFly Galleon Build related properties -->
2023-05-22 09:19:30 +00:00
<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>
2023-08-30 13:24:09 +00:00
<org.wildfly.maven.plugins.licenses-plugin.version > 2.3.1.Final</org.wildfly.maven.plugins.licenses-plugin.version>
2024-01-15 08:20:47 +00:00
2023-05-22 09:19:30 +00: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 19:23:49 +00: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>
2022-01-13 07:28:30 +00:00
<!-- Frontend -->
2024-10-21 09:35:17 +00:00
<node.version > v20.18.0</node.version>
<pnpm.version > 9.12.2</pnpm.version>
2023-10-30 11:50:06 +00:00
<pnpm.args.install > install --prefer-offline --frozen-lockfile --ignore-scripts</pnpm.args.install>
2024-04-02 14:14:58 +00:00
<!-- The clean step is skipped on Windows -->
<js.skip.clean > false</js.skip.clean>
2024-06-13 11:52:37 +00:00
<!-- Set to true on release to update proto.lock files -->
<commitProtoLockChanges > false</commitProtoLockChanges>
2024-10-08 14:22:41 +00:00
<skipProtoLock > false</skipProtoLock>
2015-07-17 11:45:43 +00:00
</properties>
<url > http://keycloak.org</url>
<licenses >
<license >
<name > Apache License, Version 2.0</name>
2017-02-22 14:25:08 +00:00
<url > https://www.apache.org/licenses/LICENSE-2.0</url>
2015-07-17 11:45:43 +00: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 14:25:08 +00:00
<url > https://github.com/keycloak/keycloak/tree/master/</url>
2015-07-17 11:45:43 +00:00
</scm>
<distributionManagement >
<repository >
2022-03-15 07:59:11 +00:00
<id > ${jboss.releases.repo.id}</id>
2015-07-17 11:45:43 +00:00
<name > JBoss Releases Repository</name>
2022-03-15 07:59:11 +00:00
<url > ${jboss.releases.repo.url}</url>
2015-07-17 11:45:43 +00:00
</repository>
</distributionManagement>
<issueManagement >
<system > JIRA</system>
2021-11-08 12:21:43 +00:00
<url > https://github.com/keycloak/keycloak/issues</url>
2015-07-17 11:45:43 +00:00
</issueManagement>
<developers >
<developer >
2021-12-10 11:24:23 +00:00
<id > keycloak</id>
<name > Keycloak Team</name>
2015-07-17 11:45:43 +00:00
</developer>
</developers>
2021-05-03 19:06:07 +00:00
<contributors > </contributors>
2015-07-17 11:45:43 +00:00
<modules >
2017-01-11 13:30:16 +00:00
<module > boms</module>
2015-10-01 18:27:51 +00:00
<module > common</module>
2015-07-17 11:45:43 +00:00
<module > core</module>
2022-06-21 09:17:45 +00:00
<module > crypto</module>
2015-07-17 11:45:43 +00:00
<module > dependencies</module>
2021-11-18 12:40:02 +00:00
<module > docs</module>
2016-01-15 23:44:17 +00:00
<module > server-spi</module>
2016-11-09 08:40:31 +00:00
<module > server-spi-private</module>
2016-04-12 19:19:46 +00:00
<module > saml-core-api</module>
2016-01-21 14:56:28 +00:00
<module > saml-core</module>
2015-07-17 11:45:43 +00:00
<module > federation</module>
<module > services</module>
2016-01-21 12:51:01 +00:00
<module > themes</module>
2016-01-19 22:00:58 +00:00
<module > model</module>
2015-07-17 11:45:43 +00:00
<module > util</module>
2023-01-19 12:06:21 +00:00
<module > rest</module>
2016-01-20 21:46:38 +00:00
<module > integration</module>
<module > adapters</module>
2016-06-17 05:07:34 +00:00
<module > authz</module>
2023-03-01 08:39:22 +00:00
<module > js</module>
2024-08-28 12:14:08 +00:00
<module > test-framework</module>
2022-09-30 12:26:55 +00:00
<module > quarkus</module>
2015-07-17 11:45:43 +00:00
</modules>
<dependencyManagement >
2022-04-21 14:33:55 +00:00
2015-07-17 11:45:43 +00:00
<dependencies >
2024-01-15 08:20:47 +00:00
<dependency >
<groupId > org.infinispan</groupId>
<artifactId > infinispan-bom</artifactId>
<version > ${infinispan.version}</version>
<type > pom</type>
<scope > import</scope>
</dependency>
2023-05-25 17:00:49 +00: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 10:01:55 +00:00
<dependency >
<groupId > io.sundr</groupId>
<artifactId > builder-annotations</artifactId>
<version > ${sundrio.version}</version>
</dependency>
2023-01-11 07:48:00 +00:00
<dependency >
<groupId > com.thoughtworks.xstream</groupId>
<artifactId > xstream</artifactId>
<version > ${xstream.version}</version>
</dependency>
2023-02-07 13:59:23 +00:00
<dependency >
<groupId > org.snakeyaml</groupId>
<artifactId > snakeyaml-engine</artifactId>
<version > ${org.snakeyaml.snakeyaml-engine.version}</version>
</dependency>
2016-12-22 21:18:24 +00:00
<dependency >
<groupId > org.jboss</groupId>
<artifactId > jboss-dmr</artifactId>
<version > ${jboss.dmr.version}</version>
</dependency>
2015-07-17 11:45:43 +00: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 23:48:19 +00:00
<dependency >
2023-01-31 01:36:58 +00:00
<groupId > com.sun.xml.messaging.saaj</groupId>
<artifactId > saaj-impl</artifactId>
<version > ${sun.saaj.version}</version>
2019-09-23 23:48:19 +00:00
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > com.sun.xml.bind.external</groupId>
<artifactId > rngom</artifactId>
2019-11-19 08:20:44 +00:00
<version > ${sun.xml.bind.version}</version>
2015-07-17 11:45:43 +00:00
</dependency>
2023-01-31 14:47:19 +00: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 11:45:43 +00:00
<dependency >
2019-02-15 20:00:46 +00:00
<groupId > org.glassfish.jaxb</groupId>
2015-07-17 11:45:43 +00:00
<artifactId > xsom</artifactId>
2019-02-15 20:00:46 +00:00
<version > ${org.glassfish.jaxb.xsom.version}</version>
2015-07-17 11:45:43 +00:00
</dependency>
2024-09-23 18:10:24 +00:00
2022-06-21 09:17:45 +00:00
<dependency >
<groupId > org.bouncycastle</groupId>
<artifactId > bcpkix-fips</artifactId>
<version > ${bouncycastle.pkixfips.version}</version>
</dependency>
2024-06-22 09:07:42 +00:00
<dependency >
<groupId > org.bouncycastle</groupId>
<artifactId > bc-fips</artifactId>
<version > ${bouncycastle.bcfips.version}</version>
</dependency>
2024-05-19 02:18:40 +00:00
<dependency >
<groupId > org.bouncycastle</groupId>
<artifactId > bctls-fips</artifactId>
<version > ${bouncycastle.bctls-fips.version}</version>
</dependency>
2024-09-23 18:10:24 +00:00
<dependency >
<groupId > org.bouncycastle</groupId>
<artifactId > bcutil-fips</artifactId>
<version > ${bouncycastle.bcutilfips.version}</version>
</dependency>
2024-09-13 10:01:55 +00:00
2019-09-04 18:52:16 +00:00
<dependency >
<groupId > com.github.ua-parser</groupId>
<artifactId > uap-java</artifactId>
<version > ${ua-parser.version}</version>
2023-07-06 22:56:02 +00: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 18:52:16 +00:00
</dependency>
2023-01-04 15:25:12 +00:00
<!-- JAKARTA -->
2023-01-19 12:10:19 +00:00
<dependency >
2023-03-24 11:23:37 +00: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 11:45:43 +00:00
</dependency>
<dependency >
2023-01-04 15:25:12 +00:00
<groupId > jakarta.xml.ws</groupId>
<artifactId > jakarta.xml.ws-api</artifactId>
<version > ${jakarta.xml.ws.version}</version>
2015-07-17 11:45:43 +00:00
</dependency>
2023-01-09 09:57:57 +00:00
<dependency >
<groupId > jakarta.xml.soap</groupId>
<artifactId > jakarta.xml.soap-api</artifactId>
<version > ${jakarta.xml.soap.version}</version>
</dependency>
2023-01-04 15:25:12 +00:00
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.jboss.resteasy</groupId>
2022-03-24 13:21:36 +00:00
<artifactId > resteasy-core</artifactId>
2015-07-17 11:45:43 +00:00
<version > ${resteasy.version}</version>
2019-10-03 13:52:53 +00:00
<exclusions >
<exclusion >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
2018-09-24 08:49:47 +00: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 11:45:43 +00:00
</dependency>
2024-02-07 16:57:23 +00:00
<dependency >
<groupId > org.jboss.resteasy</groupId>
<artifactId > resteasy-core-spi</artifactId>
<version > ${resteasy.version}</version>
</dependency>
2015-07-17 11:45:43 +00: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 20:03:32 +00:00
<artifactId > resteasy-jackson2-provider</artifactId>
2015-07-17 11:45:43 +00:00
<version > ${resteasy.version}</version>
</dependency>
<dependency >
<groupId > org.jboss.resteasy</groupId>
2019-02-12 09:12:40 +00:00
<artifactId > resteasy-jaxb-provider</artifactId>
<version > ${resteasy.version}</version>
</dependency>
<dependency >
<groupId > org.jboss.resteasy</groupId>
2015-07-17 11:45:43 +00:00
<artifactId > resteasy-client</artifactId>
2016-01-13 20:03:32 +00:00
<version > ${resteasy.version}</version>
2015-07-17 11:45:43 +00:00
</dependency>
<dependency >
<groupId > org.jboss.resteasy</groupId>
<artifactId > resteasy-undertow</artifactId>
2018-12-19 10:34:27 +00:00
<version > ${resteasy.undertow.version}</version>
2018-09-24 08:49:47 +00: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 20:03:32 +00:00
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.jboss.spec.javax.xml.bind</groupId>
2018-09-24 08:49:47 +00: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 11:45:43 +00:00
</dependency>
2018-11-07 13:44:22 +00: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 11:45:43 +00: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 14:34:20 +00:00
</dependency>
2018-07-31 18:51:42 +00: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 16:49:19 +00: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 11:45:43 +00: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 11:20:09 +00:00
<dependency >
2023-01-04 15:38:14 +00:00
<groupId > org.hibernate.orm</groupId>
2018-10-05 11:20:09 +00:00
<artifactId > hibernate-c3p0</artifactId>
2018-12-19 10:34:27 +00:00
<version > ${hibernate.c3p0.version}</version>
2018-10-05 11:20:09 +00:00
<scope > test</scope>
</dependency>
2015-07-17 11:45:43 +00: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 08:49:47 +00:00
<groupId > com.fasterxml.woodstox</groupId>
<artifactId > woodstox-core</artifactId>
2016-02-25 14:43:00 +00:00
</exclusion>
2015-07-17 11:45:43 +00:00
</exclusions>
</dependency>
<dependency >
<groupId > org.wildfly</groupId>
<artifactId > wildfly-dist</artifactId>
<version > ${wildfly.version}</version>
<type > zip</type>
</dependency>
2022-05-27 10:28:50 +00:00
<dependency >
<groupId > org.openjdk.nashorn</groupId>
<artifactId > nashorn-core</artifactId>
<version > ${nashorn.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<!-- Twitter -->
<dependency >
<groupId > org.twitter4j</groupId>
<artifactId > twitter4j-core</artifactId>
<version > ${twitter4j.version}</version>
2023-09-06 13:19:10 +00:00
<exclusions >
<exclusion >
<groupId > org.jetbrains</groupId>
<artifactId > annotations</artifactId>
</exclusion>
</exclusions>
2015-07-17 11:45:43 +00: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 13:41:48 +00:00
<exclusions >
<exclusion >
<groupId > com.beust</groupId>
<artifactId > jcommander</artifactId>
</exclusion>
</exclusions>
2015-07-17 11:45:43 +00:00
</dependency>
<!-- Email Test Servers -->
<dependency >
<groupId > com.icegreen</groupId>
<artifactId > greenmail</artifactId>
<version > ${greenmail.version}</version>
<scope > test</scope>
</dependency>
2016-05-16 20:31:23 +00:00
<dependency >
<groupId > org.subethamail</groupId>
<artifactId > subethasmtp</artifactId>
<version > ${subethasmtp.version}</version>
<scope > test</scope>
</dependency>
2015-07-17 11:45:43 +00:00
<!-- Apache DS -->
2020-05-13 12:58:20 +00: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 11:45:43 +00: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 20:00:46 +00:00
<groupId > org.dom4j</groupId>
2015-07-17 11:45:43 +00: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 11:57:45 +00:00
<artifactId > slf4j-reload4j</artifactId>
2015-07-17 11:45:43 +00:00
<version > ${slf4j.version}</version>
<scope > test</scope>
</dependency>
<!-- Needed for picketlink perf test -->
<dependency >
2024-02-07 16:57:23 +00:00
<groupId > com.mysql</groupId>
2023-07-05 13:12:50 +00:00
<artifactId > mysql-connector-j</artifactId>
2022-11-29 23:04:56 +00:00
<version > ${mysql-jdbc.version}</version>
2015-07-17 11:45:43 +00:00
</dependency>
2023-08-21 20:23:08 +00:00
<dependency >
<groupId > org.wildfly.common</groupId>
<artifactId > wildfly-common</artifactId>
2023-09-05 21:19:39 +00:00
<version > ${wildfly.common.quarkus.aligned.version}</version>
2023-08-21 20:23:08 +00:00
</dependency>
2015-07-17 11:45:43 +00: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 09:57:16 +00:00
<exclusions >
<exclusion >
<groupId > io.smallrye</groupId>
<artifactId > jandex</artifactId>
</exclusion>
</exclusions>
2015-07-17 11:45:43 +00:00
</dependency>
<dependency >
<groupId > org.wildfly</groupId>
<artifactId > wildfly-ee</artifactId>
<version > ${wildfly.version}</version>
</dependency>
2021-02-05 19:23:49 +00: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 17:50:09 +00:00
<groupId > ${ee.maven.groupId}</groupId>
2021-02-05 19:23:49 +00:00
<artifactId > wildfly-ee-galleon-pack</artifactId>
<version > ${wildfly.version}</version>
<type > zip</type>
</dependency>
<dependency >
2021-06-22 17:50:09 +00:00
<groupId > ${ee.maven.groupId}</groupId>
2021-02-05 19:23:49 +00:00
<artifactId > wildfly-servlet-galleon-pack</artifactId>
2021-06-22 17:50:09 +00:00
<version > ${ee.maven.version}</version>
2021-02-05 19:23:49 +00:00
<type > zip</type>
</dependency>
2015-07-17 11:45:43 +00: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 07:51:12 +00:00
<groupId > ${ee.maven.groupId}</groupId>
2015-07-17 11:45:43 +00:00
<artifactId > wildfly-undertow</artifactId>
<version > ${wildfly.version}</version>
<scope > test</scope>
2017-09-15 07:55:42 +00:00
<exclusions >
<exclusion >
<groupId > io.undertow.jastow</groupId>
<artifactId > jastow</artifactId>
</exclusion>
</exclusions>
2015-07-17 11:45:43 +00: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 19:23:49 +00: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 15:38:14 +00:00
<artifactId > wildfly-core-feature-pack-ee-9-api</artifactId>
2021-02-05 19:23:49 +00: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 11:45:43 +00: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 19:23:49 +00: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 11:45:43 +00:00
<dependency >
<groupId > org.wildfly.core</groupId>
<artifactId > wildfly-version</artifactId>
<version > ${wildfly.core.version}</version>
</dependency>
<dependency >
2023-08-29 07:51:12 +00:00
<groupId > ${ee.maven.groupId}</groupId>
2015-07-17 11:45:43 +00:00
<artifactId > wildfly-web-common</artifactId>
<version > ${wildfly.version}</version>
</dependency>
2017-03-24 14:32:08 +00:00
<dependency >
<groupId > org.wildfly.security.elytron-web</groupId>
<artifactId > undertow-server</artifactId>
2017-08-28 10:06:37 +00:00
<version > ${elytron.undertow-server.version}</version>
2017-03-24 14:32:08 +00:00
</dependency>
2024-02-07 16:57:23 +00:00
<dependency >
<groupId > org.wildfly.security</groupId>
<artifactId > wildfly-elytron-http-oidc</artifactId>
<version > ${wildfly-elytron.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.liquibase</groupId>
<artifactId > liquibase-core</artifactId>
<version > ${liquibase.version}</version>
2022-12-09 15:00:04 +00: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 11:45:43 +00:00
</dependency>
<!-- keycloak -->
2015-11-18 14:09:32 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-client-registration-api</artifactId>
<version > ${project.version}</version>
</dependency>
2015-10-01 18:27:51 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-common</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-core</artifactId>
<version > ${project.version}</version>
</dependency>
2022-06-29 05:17:09 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-core</artifactId>
<type > test-jar</type>
<version > ${project.version}</version>
</dependency>
2022-05-10 13:25:01 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-config-api</artifactId>
<version > ${project.version}</version>
</dependency>
2015-09-30 11:13:17 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-client-api</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-kerberos-federation</artifactId>
<version > ${project.version}</version>
</dependency>
2016-07-11 21:27:21 +00:00
<!-- Dependencies for RHEL IdM -->
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-sssd-federation</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-ldap-federation</artifactId>
<version > ${project.version}</version>
</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 12:51:01 +00:00
<artifactId > keycloak-themes</artifactId>
2015-07-17 11:45:43 +00:00
<version > ${project.version}</version>
</dependency>
2015-09-04 19:56:28 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-adapter-spi</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
2024-06-19 17:52:07 +00:00
<artifactId > keycloak-admin-client-jee-tests</artifactId>
2015-07-17 11:45:43 +00:00
<version > ${project.version}</version>
</dependency>
2023-01-04 15:38:14 +00:00
<dependency >
<groupId > org.keycloak</groupId>
2024-06-19 17:52:07 +00:00
<artifactId > keycloak-admin-client-tests</artifactId>
2023-01-04 15:38:14 +00:00
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-jboss-adapter-core</artifactId>
<version > ${project.version}</version>
</dependency>
2017-03-24 14:32:08 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-wildfly-elytron-adapter</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<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
<version > ${project.version}</version>
</dependency>
2016-11-09 08:40:31 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-server-spi-private</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-model-jpa</artifactId>
<version > ${project.version}</version>
</dependency>
2022-05-26 13:48:12 +00:00
<dependency >
<groupId > org.keycloak</groupId>
2024-01-24 14:39:29 +00:00
<artifactId > keycloak-model-storage</artifactId>
2022-05-26 13:48:12 +00:00
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2024-01-24 14:39:29 +00:00
<artifactId > keycloak-model-storage-private</artifactId>
2022-05-26 13:48:12 +00:00
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2024-01-24 14:39:29 +00:00
<artifactId > keycloak-model-storage-services</artifactId>
2022-05-26 13:48:12 +00:00
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
2016-01-20 19:52:04 +00:00
<artifactId > keycloak-model-infinispan</artifactId>
2015-07-17 11:45:43 +00:00
<version > ${project.version}</version>
</dependency>
2021-06-26 15:35:40 +00:00
<dependency >
<groupId > org.keycloak</groupId>
2015-07-17 11:45:43 +00: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 19:19:46 +00: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 18:00:57 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-adapter-core</artifactId>
<version > ${project.version}</version>
2015-09-25 19:12:14 +00:00
</dependency>
2023-05-22 09:19:30 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-saml-adapter-galleon-pack</artifactId>
<version > ${project.version}</version>
<type > zip</type>
</dependency>
2024-04-23 16:36:36 +00:00
<dependency >
2015-09-23 00:27:08 +00:00
<groupId > org.keycloak</groupId>
2015-11-09 14:12:01 +00:00
<artifactId > keycloak-saml-wildfly-subsystem</artifactId>
2015-09-30 00:24:59 +00:00
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-services</artifactId>
<version > ${project.version}</version>
</dependency>
2024-03-21 14:28:34 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-services</artifactId>
<version > ${project.version}</version>
<type > test-jar</type>
</dependency>
2016-06-17 05:07:34 +00:00
<!-- Authorization -->
<dependency >
<groupId > org.keycloak</groupId>
2024-07-17 10:11:26 +00:00
<artifactId > keycloak-authz-client-tests</artifactId>
2016-06-17 05:07:34 +00:00
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2016-06-17 14:04:48 +00:00
<artifactId > keycloak-authz-policy-common</artifactId>
2016-06-17 05:07:34 +00:00
<version > ${project.version}</version>
</dependency>
2020-09-25 14:50:58 +00: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 23:53:23 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-junit5</artifactId>
<version > ${project.version}</version>
</dependency>
2023-04-13 13:41:40 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-account-ui</artifactId>
<version > ${project.version}</version>
</dependency>
2021-09-15 14:09:06 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-admin-ui</artifactId>
2023-03-13 18:16:12 +00:00
<version > ${project.version}</version>
2021-09-15 14:09:06 +00:00
</dependency>
2023-01-19 12:06:21 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-rest-admin-ui-ext</artifactId>
<version > ${project.version}</version>
</dependency>
2020-09-25 14:50:58 +00:00
2020-06-09 22:05:00 +00:00
<dependency >
<groupId > org.keycloak</groupId>
2022-02-01 08:42:09 +00:00
<artifactId > keycloak-quarkus-dist</artifactId>
2020-06-09 22:05:00 +00:00
<version > ${project.version}</version>
<type > zip</type>
</dependency>
2015-07-17 11:45:43 +00: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 11:40:21 +00:00
<artifactId > keycloak-api-docs-dist</artifactId>
2015-07-17 11:45:43 +00: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 05:59:47 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-testsuite-utils</artifactId>
<version > ${project.version}</version>
</dependency>
2015-07-17 11:45:43 +00: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 09:17:45 +00:00
<dependency >
<groupId > org.keycloak</groupId>
2022-06-29 05:17:09 +00:00
<artifactId > keycloak-crypto-default</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-crypto-fips1402</artifactId>
2022-06-21 09:17:45 +00:00
<version > ${project.version}</version>
</dependency>
2016-10-31 21:00:43 +00:00
<dependency >
<groupId > org.keycloak</groupId>
2022-09-27 06:53:46 +00:00
<artifactId > keycloak-crypto-elytron</artifactId>
<version > ${project.version}</version>
</dependency>
<dependency >
<groupId > org.keycloak</groupId>
2016-10-31 21:00:43 +00:00
<artifactId > keycloak-admin-cli</artifactId>
<version > ${project.version}</version>
</dependency>
2016-07-12 13:30:33 +00:00
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-client-cli-dist</artifactId>
<version > ${project.version}</version>
<type > zip</type>
</dependency>
2019-10-01 13:17:38 +00: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 08:23:09 +00:00
<dependency >
<groupId > org.apache.kerby</groupId>
<artifactId > kerby-asn1</artifactId>
<version > ${org.apache.kerby.kerby-asn1.version}</version>
</dependency>
2019-10-23 14:30:28 +00:00
<dependency >
<groupId > commons-lang</groupId>
<artifactId > commons-lang</artifactId>
<version > ${commons-lang.version}</version>
</dependency>
2023-05-30 17:41:25 +00:00
2021-02-05 19:23:49 +00: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 09:57:57 +00: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 08:20:47 +00:00
2023-05-22 09:19:30 +00: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 16:05:53 +00: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 08:03:58 +00:00
2024-07-25 13:54:00 +00:00
<dependency >
<groupId > org.infinispan</groupId>
<artifactId > infinispan-core</artifactId>
<type > test-jar</type>
<version > ${infinispan.version}</version>
</dependency>
2024-07-03 08:03:58 +00:00
<dependency >
<groupId > org.infinispan.protostream</groupId>
<artifactId > protostream</artifactId>
<version > ${protostream.version}</version>
</dependency>
<dependency >
<groupId > org.infinispan.protostream</groupId>
<artifactId > protostream-types</artifactId>
<version > ${protostream.version}</version>
</dependency>
<dependency >
<groupId > org.infinispan.protostream</groupId>
<artifactId > protostream-processor</artifactId>
<version > ${protostream.version}</version>
<!-- compile - only dependency -->
<scope > provided</scope>
</dependency>
2015-07-17 11:45:43 +00:00
</dependencies>
</dependencyManagement>
<build >
<pluginManagement >
<plugins >
2016-03-29 09:32:08 +00: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 07:59:11 +00:00
<serverId > ${jboss.releases.repo.id}</serverId>
<nexusUrl > ${jboss.repo.nexusUrl}</nexusUrl>
2016-03-29 09:32:08 +00:00
</configuration>
</plugin>
2023-02-14 10:44:53 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-shade-plugin</artifactId>
<version > ${shade.plugin.version}</version>
</plugin>
2015-09-18 11:23:54 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2017-03-13 17:28:51 +00:00
<artifactId > maven-assembly-plugin</artifactId>
<configuration >
<tarLongFileMode > posix</tarLongFileMode>
</configuration>
</plugin>
2021-02-05 19:23:49 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-dependency-plugin</artifactId>
<version > 3.1.2</version>
</plugin>
2017-03-13 17:28:51 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2015-09-18 11:23:54 +00:00
<artifactId > maven-release-plugin</artifactId>
<version > 2.5.2</version>
<configuration >
<autoVersionSubmodules > true</autoVersionSubmodules>
<tagNameFormat > @{project.version}</tagNameFormat>
</configuration>
</plugin>
2015-07-17 11:45:43 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
2022-11-29 23:04:56 +00:00
<version > ${surefire-plugin.version}</version>
2015-07-17 11:45:43 +00:00
<configuration >
2022-12-15 09:14:30 +00: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 20:12:25 +00:00
<runOrder > alphabetical</runOrder>
2022-06-21 07:18:40 +00:00
<failIfNoSpecifiedTests > false</failIfNoSpecifiedTests>
2015-07-17 11:45:43 +00:00
</configuration>
</plugin>
2017-03-23 10:59:19 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-jar-plugin</artifactId>
</plugin>
2023-06-29 15:46:28 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-plugin-plugin</artifactId>
2024-02-01 10:37:20 +00:00
<version > ${maven.plugins.version}</version>
2023-06-29 15:46:28 +00:00
</plugin>
2016-12-22 21:18:24 +00:00
<plugin >
<groupId > com.google.code.maven-replacer-plugin</groupId>
<artifactId > maven-replacer-plugin</artifactId>
<version > ${replacer.plugin.version}</version>
</plugin>
2015-07-17 11:45:43 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-install-plugin</artifactId>
<configuration >
<createChecksum > true</createChecksum>
</configuration>
</plugin>
2024-06-21 12:19:31 +00: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 11:45:43 +00: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 17:50:09 +00:00
<plugin >
<groupId > org.jboss.galleon</groupId>
<artifactId > galleon-maven-plugin</artifactId>
<version > ${org.jboss.galleon.version}</version>
</plugin>
2015-07-17 11:45:43 +00: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 17:41:25 +00: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 19:23:49 +00: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 21:19:39 +00:00
<version > ${wildfly.common.wildfly.aligned.version}</version>
2021-02-05 19:23:49 +00: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>
2024-04-02 14:14:58 +00:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-clean-plugin</artifactId>
<configuration >
<followSymLinks > false</followSymLinks>
<!-- Skip this step if on windows -->
<skip > ${js.skip.clean}</skip>
<filesets >
<fileset >
<directory > ${basedir}</directory>
<includes >
<include > **/.wireit/**</include>
<include > **/node_modules/**</include>
</includes>
</fileset>
<!-- include all non - maven projects here as well -->
<fileset >
<directory > js/apps/keycloak-server</directory>
<includes >
<include > server/**</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
2017-07-24 13:12:43 +00:00
<plugin >
<groupId > com.github.eirslett</groupId>
<artifactId > frontend-maven-plugin</artifactId>
<version > ${frontend.plugin.version}</version>
2024-04-02 14:14:58 +00:00
<executions >
<execution >
<goals >
<goal > install-node-and-pnpm</goal>
</goals>
</execution>
<execution >
<id > pnpm-install</id>
<goals >
<goal > pnpm</goal>
</goals>
<configuration >
<arguments > install --prefer-offline --frozen-lockfile --ignore-scripts</arguments>
<workingDirectory > ${maven.multiModuleProjectDirectory}</workingDirectory>
</configuration>
</execution>
<execution >
<id > pnpm-build</id>
<goals >
<goal > pnpm</goal>
</goals>
<configuration >
<arguments > build</arguments>
</configuration>
</execution>
</executions>
2023-10-30 11:50:06 +00:00
<configuration >
<nodeVersion > ${node.version}</nodeVersion>
<pnpmVersion > ${pnpm.version}</pnpmVersion>
<installDirectory > ${maven.multiModuleProjectDirectory}</installDirectory>
2024-04-02 14:14:58 +00:00
<pnpmInheritsProxyConfigFromMaven > false</pnpmInheritsProxyConfigFromMaven>
2023-10-30 11:50:06 +00:00
</configuration>
2017-07-24 13:12:43 +00:00
</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 21:53:24 +00:00
<plugin >
2017-11-27 17:31:31 +00: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 21:53:24 +00:00
<executions >
<execution >
2017-11-27 17:31:31 +00: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 21:53:24 +00:00
<goals >
2017-11-27 17:31:31 +00: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 21:53:24 +00:00
</goals>
2017-11-27 17:31:31 +00: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 21:53:24 +00:00
</execution>
</executions>
</plugin>
2023-02-14 10:44:53 +00:00
<plugin >
<groupId > org.asciidoctor</groupId>
<artifactId > asciidoctor-maven-plugin</artifactId>
2023-05-17 15:34:32 +00:00
<version > ${asciidoctor.plugin.version}</version>
2023-02-14 10:44:53 +00:00
</plugin>
2023-11-07 09:31:58 +00:00
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > build-helper-maven-plugin</artifactId>
<version > ${build-helper-maven-plugin.version}</version>
</plugin>
2024-06-13 11:52:37 +00:00
<plugin >
2024-07-03 08:03:58 +00:00
<groupId > org.infinispan.protostream</groupId>
2024-06-13 11:52:37 +00:00
<artifactId > proto-schema-compatibility-maven-plugin</artifactId>
2024-10-04 09:58:12 +00:00
<version > ${protostream.plugin.version}</version>
2024-06-13 11:52:37 +00:00
<configuration >
<commitProtoLock > ${commitProtoLockChanges}</commitProtoLock>
2024-10-08 14:22:41 +00:00
<skip > ${skipProtoLock}</skip>
2024-06-13 11:52:37 +00:00
</configuration>
</plugin>
2015-07-17 11:45:43 +00:00
</plugins>
</pluginManagement>
</build>
<profiles >
2017-05-08 12:35:17 +00:00
<profile >
<id > testsuite</id>
<activation >
<property >
<name > !skipTestsuite</name>
</property>
</activation>
<modules >
<module > testsuite</module>
</modules>
</profile>
2024-05-27 13:05:35 +00:00
<profile >
<id > test-poc</id>
<modules >
<module > test-poc</module>
</modules>
</profile>
2023-08-29 07:51:12 +00: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>
</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>
</properties>
</profile>
2015-07-17 11:45:43 +00:00
<profile >
<id > distribution</id>
<modules >
<module > distribution</module>
</modules>
</profile>
2015-09-17 07:13:48 +00:00
2015-07-17 11:45:43 +00:00
<profile >
<id > jboss-release</id>
<modules >
<module > distribution</module>
</modules>
</profile>
2015-09-17 07:13:48 +00:00
2022-01-12 08:06:10 +00:00
<profile >
<id > operator</id>
<activation >
<property >
<name > operator</name>
</property>
</activation>
2023-06-01 11:39:41 +00: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 09:32:08 +00: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 09:20:37 +00:00
2024-10-24 10:19:09 +00: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 15:28:13 +00:00
<profile >
2022-03-17 07:55:40 +00:00
<id > gpg</id>
2022-03-16 15:28:13 +00:00
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-gpg-plugin</artifactId>
2022-03-17 07:55:40 +00:00
<version > 3.0.1</version>
2022-03-16 15:28:13 +00:00
<executions >
<execution >
2022-03-17 07:55:40 +00:00
<id > sign-artifacts</id>
<phase > verify</phase>
2022-03-16 15:28:13 +00:00
<goals >
<goal > sign</goal>
</goals>
2022-03-17 07:55:40 +00:00
<configuration >
<gpgArguments >
<arg > --batch</arg>
<arg > --pinentry-mode</arg>
<arg > loopback</arg>
</gpgArguments>
</configuration>
2022-03-16 15:28:13 +00:00
</execution>
</executions>
2022-03-17 07:55:40 +00:00
<configuration >
</configuration>
2022-03-16 15:28:13 +00:00
</plugin>
</plugins>
</build>
</profile>
2022-06-29 05:17:09 +00: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>
2024-04-02 14:14:58 +00:00
<profile >
<id > clean-when-not-on-windows</id>
<activation >
<os >
<family > windows</family>
</os>
</activation>
<properties >
<js.skip.clean > true</js.skip.clean>
</properties>
</profile>
2015-07-17 11:45:43 +00:00
</profiles>
2021-06-26 15:35:40 +00:00
</project>