Keycloak
68 строк · 2.4 Кб
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<name>Keycloak Wildfly SAML Adapter</name>27<description/>28<modelVersion>4.0.0</modelVersion>29
30<artifactId>keycloak-saml-wildfly-adapter-dist-pom</artifactId>31<packaging>pom</packaging>32
33<modules>34<module>wildfly-modules</module>35<module>wildfly-jakarta-modules</module>36</modules>37
38<profiles>39<profile>40<!-- Jakarta Build for WF.version >= 27 -->41<id>wildfly-saml-adapter-jakarta-build</id>42<activation>43<property>44<!-- TODO: use proper activation of this profile45<name>wildfly.jakarta.adapters</name>
46-->
47<name>!todo-wildfly.jakarta.adapters</name>48</property>49</activation>50<modules>51<module>wildfly-adapter-jakarta-zip</module>52</modules>53</profile>54<profile>55<!-- non Jakarta Build for WF.version <= 23 -->56<id>wildfly-saml-adapter-build</id>57<activation>58<property>59<name>!wildfly.jakarta.adapters</name>60</property>61</activation>62<modules>63<module>wildfly-adapter-zip</module>64</modules>65</profile>66</profiles>67
68</project>69