2016-02-03 10:20:22 +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.
|
|
|
|
-->
|
|
|
|
|
2015-07-17 11:45:43 +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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>keycloak-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2021-05-06 12:39:32 +00:00
|
|
|
<version>14.0.0-SNAPSHOT</version>
|
2015-07-17 11:45:43 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>Distribution Parent</name>
|
|
|
|
<description/>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2016-01-13 13:24:31 +00:00
|
|
|
<artifactId>keycloak-distribution-parent</artifactId>
|
2015-07-17 11:45:43 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2017-10-18 13:03:25 +00:00
|
|
|
<properties>
|
|
|
|
<keycloak.provisioning.xml>server-provisioning.xml</keycloak.provisioning.xml>
|
|
|
|
</properties>
|
|
|
|
|
2015-07-17 11:45:43 +00:00
|
|
|
<modules>
|
|
|
|
<module>adapters</module>
|
2015-09-30 15:01:45 +00:00
|
|
|
<module>saml-adapters</module>
|
2017-09-08 15:28:12 +00:00
|
|
|
<module>feature-packs</module>
|
2020-04-09 13:19:10 +00:00
|
|
|
<module>galleon-feature-packs</module>
|
2017-11-27 17:31:31 +00:00
|
|
|
<module>licenses-common</module>
|
|
|
|
<module>maven-plugins</module>
|
2015-07-17 11:45:43 +00:00
|
|
|
<module>server-dist</module>
|
|
|
|
<module>server-overlay</module>
|
|
|
|
</modules>
|
2015-08-18 10:56:43 +00:00
|
|
|
|
2019-09-25 06:02:17 +00:00
|
|
|
<repositories>
|
|
|
|
<!-- Needed for org.picketlink:picketlink-api -->
|
|
|
|
<repository>
|
|
|
|
<id>jboss-enterprise-maven-repository</id>
|
|
|
|
<name>JBoss Enterprise Maven Repository</name>
|
|
|
|
<url>https://maven.repository.redhat.com/ga/</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2015-08-18 10:56:43 +00:00
|
|
|
<profiles>
|
2019-11-27 20:27:21 +00:00
|
|
|
<profile>
|
2020-10-22 08:23:35 +00:00
|
|
|
<id>community</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!product</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
2019-11-27 20:27:21 +00:00
|
|
|
<modules>
|
2020-10-22 08:23:35 +00:00
|
|
|
<module>server-x-dist</module>
|
2019-11-27 20:27:21 +00:00
|
|
|
</modules>
|
|
|
|
</profile>
|
2020-12-16 13:13:00 +00:00
|
|
|
<profile>
|
|
|
|
<id>distribution-downloads</id>
|
|
|
|
<modules>
|
|
|
|
<module>api-docs-dist</module>
|
|
|
|
<module>examples-dist</module>
|
|
|
|
<module>downloads</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-08-18 10:56:43 +00:00
|
|
|
</profiles>
|
|
|
|
|
2015-07-17 11:45:43 +00:00
|
|
|
</project>
|