Keycloak
89 строк · 2.9 Кб
1<!--
2~ Copyright 2016 Red Hat, Inc. and/or its affiliates
3~ and other contributors as indicated by the @author tags.
4~
5~ Licensed under the Apache License, Version 2.0 (the "License");
6~ you may not use this file except in compliance with the License.
7~ You may obtain a copy of the License at
8~
9~ http://www.apache.org/licenses/LICENSE-2.0
10~
11~ Unless required by applicable law or agreed to in writing, software
12~ distributed under the License is distributed on an "AS IS" BASIS,
13~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14~ See the License for the specific language governing permissions and
15~ limitations under the License.
16-->
17
18<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"19xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">20<parent>21<artifactId>keycloak-parent</artifactId>22<groupId>org.keycloak</groupId>23<version>999.0.0-SNAPSHOT</version>24<relativePath>../pom.xml</relativePath>25</parent>26
27<name>Distribution Parent</name>28<description/>29<modelVersion>4.0.0</modelVersion>30
31<artifactId>keycloak-distribution-parent</artifactId>32<packaging>pom</packaging>33
34<properties>35<keycloak.provisioning.xml>server-provisioning.xml</keycloak.provisioning.xml>36
37<!-- Wildfly Community Related Properties -->38
39<!-- EAP8 Related Properties -->40
41</properties>42
43<modules>44<module>adapters</module>45<module>saml-adapters</module>46<module>feature-packs</module>47<module>galleon-feature-packs</module>48<module>licenses-common</module>49<module>maven-plugins</module>50</modules>51
52<repositories>53<repository>54<id>central</id>55<name>Maven Central</name>56<url>https://repo.maven.apache.org/maven2</url>57<snapshots>58<enabled>false</enabled>59</snapshots>60</repository>61<repository>62<id>jboss-public-repository</id>63<name>Jboss Public</name>64<url>https://repository.jboss.org/nexus/content/groups/public/</url>65<snapshots>66<enabled>false</enabled>67</snapshots>68</repository>69<repository>70<id>redhat-enterprise-maven-repository</id>71<name>Red Hat Enterprise Maven Repository</name>72<url>https://maven.repository.redhat.com/ga/</url>73<snapshots>74<enabled>false</enabled>75</snapshots>76</repository>77</repositories>78
79<profiles>80<profile>81<id>distribution-downloads</id>82<modules>83<module>api-docs-dist</module>84<module>downloads</module>85</modules>86</profile>87</profiles>88
89</project>90