Keycloak
78 строк · 2.7 Кб
1<?xml version="1.0"?>
2<!--
3~ Copyright 2016 Red Hat, Inc. and/or its affiliates
4~ and other contributors as indicated by the @author tags.
5~
6~ Licensed under the Apache License, Version 2.0 (the "License");
7~ you may not use this file except in compliance with the License.
8~ You may obtain a copy of the License at
9~
10~ http://www.apache.org/licenses/LICENSE-2.0
11~
12~ Unless required by applicable law or agreed to in writing, software
13~ distributed under the License is distributed on an "AS IS" BASIS,
14~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15~ See the License for the specific language governing permissions and
16~ limitations under the License.
17-->
18
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"20xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">21<parent>22<artifactId>keycloak-parent</artifactId>23<groupId>org.keycloak</groupId>24<version>999.0.0-SNAPSHOT</version>25<relativePath>../pom.xml</relativePath>26</parent>27<modelVersion>4.0.0</modelVersion>28
29<artifactId>keycloak-saml-core-public</artifactId>30<name>Keycloak SAML Core Public API</name>31<description/>32
33<properties>34<timestamp>${maven.build.timestamp}</timestamp>35<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>36</properties>37<dependencies>38<dependency>39<groupId>org.jboss.logging</groupId>40<artifactId>jboss-logging</artifactId>41<scope>provided</scope>42</dependency>43<dependency>44<groupId>org.keycloak</groupId>45<artifactId>keycloak-common</artifactId>46<scope>provided</scope>47</dependency>48<dependency>49<groupId>org.apache.santuario</groupId>50<artifactId>xmlsec</artifactId>51</dependency>52<dependency>53<groupId>jakarta.xml.bind</groupId>54<artifactId>jakarta.xml.bind-api</artifactId>55</dependency>56<dependency>57<groupId>jakarta.xml.ws</groupId>58<artifactId>jakarta.xml.ws-api</artifactId>59</dependency>60<dependency>61<groupId>com.sun.xml.messaging.saaj</groupId>62<artifactId>saaj-impl</artifactId>63</dependency>64<dependency>65<groupId>com.sun.xml.ws</groupId>66<artifactId>rt</artifactId>67</dependency>68</dependencies>69<build>70<resources>71<resource>72<directory>src/main/resources</directory>73<filtering>true</filtering>74</resource>75</resources>76</build>77
78</project>79