Keycloak
72 строки · 2.5 Кб
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<modelVersion>4.0.0</modelVersion>21
22<parent>23<artifactId>keycloak-examples-saml-parent</artifactId>24<groupId>org.keycloak</groupId>25<version>999.0.0-SNAPSHOT</version>26</parent>27
28<artifactId>saml-servlet-filter</artifactId>29
30<packaging>war</packaging>31
32<name>Keycloak SAML Adapter as a Servlet Filter</name>33
34<licenses>35<license>36<name>Apache License, Version 2.0</name>37<distribution>repo</distribution>38<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>39</license>40</licenses>41<dependencies>42<dependency>43<groupId>org.keycloak</groupId>44<artifactId>keycloak-saml-servlet-filter-adapter</artifactId>45</dependency>46<dependency>47<groupId>org.keycloak</groupId>48<artifactId>keycloak-crypto-default</artifactId>49</dependency>50</dependencies>51
52<build>53<!-- Set the name of the war, used as the context root when the app is deployed -->54<finalName>${project.artifactId}</finalName>55<plugins>56<plugin>57<groupId>org.jboss.as.plugins</groupId>58<artifactId>jboss-as-maven-plugin</artifactId>59<configuration>60<skip>false</skip>61</configuration>62</plugin>63<plugin>64<groupId>org.wildfly.plugins</groupId>65<artifactId>wildfly-maven-plugin</artifactId>66<configuration>67<skip>false</skip>68</configuration>69</plugin>70</plugins>71</build>72</project>