Keycloak
80 строк · 2.9 Кб
1<?xml version="1.0" encoding="UTF-8"?>
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"20xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"21xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">22<parent>23<artifactId>keycloak-integration-parent</artifactId>24<groupId>org.keycloak</groupId>25<version>999.0.0-SNAPSHOT</version>26</parent>27<modelVersion>4.0.0</modelVersion>28
29<artifactId>keycloak-admin-client-jee</artifactId>30<name>Keycloak Admin REST Client JavaEE</name>31<description/>32
33<properties>34<resteasy.version>${resteasy-legacy.version}</resteasy.version>35</properties>36
37<dependencies>38<dependency>39<groupId>org.keycloak</groupId>40<artifactId>keycloak-core</artifactId>41<exclusions>42<exclusion>43<groupId>*</groupId>44<artifactId>*</artifactId>45</exclusion>46</exclusions>47</dependency>48<dependency>49<groupId>org.keycloak</groupId>50<artifactId>keycloak-common</artifactId>51<exclusions>52<exclusion>53<groupId>*</groupId>54<artifactId>*</artifactId>55</exclusion>56</exclusions>57</dependency>58<dependency>59<groupId>org.jboss.resteasy</groupId>60<artifactId>resteasy-client</artifactId>61<version>${resteasy.version}</version>62</dependency>63<dependency>64<groupId>org.jboss.resteasy</groupId>65<artifactId>resteasy-multipart-provider</artifactId>66<version>${resteasy.version}</version>67</dependency>68<dependency>69<groupId>org.jboss.resteasy</groupId>70<artifactId>resteasy-jackson2-provider</artifactId>71<version>${resteasy.version}</version>72</dependency>73<dependency>74<groupId>org.jboss.resteasy</groupId>75<artifactId>resteasy-jaxb-provider</artifactId>76<version>${resteasy.version}</version>77</dependency>78</dependencies>79
80</project>81