Keycloak
74 строки · 2.8 Кб
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3JBoss, Home of Professional Open Source
4Copyright 2016, Red Hat, Inc. and/or its affiliates, and individual
5contributors by the @authors tag. See the copyright.txt in the
6distribution for a full listing of individual contributors.
7
8Licensed under the Apache License, Version 2.0 (the "License");
9you may not use this file except in compliance with the License.
10You may obtain a copy of the License at
11http://www.apache.org/licenses/LICENSE-2.0
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS,
14WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15See the License for the specific language governing permissions and
16limitations under the License.
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<groupId>org.keycloak</groupId>24<artifactId>keycloak-rest-parent</artifactId>25<version>999.0.0-SNAPSHOT</version>26</parent>27
28<artifactId>keycloak-rest-admin-ui-ext</artifactId>29<name>Admin UI REST extensions</name>30<description>Custom REST endpoints for the Admin UI</description>31
32<dependencies>33<dependency>34<groupId>org.keycloak</groupId>35<artifactId>keycloak-server-spi</artifactId>36</dependency>37<dependency>38<groupId>org.keycloak</groupId>39<artifactId>keycloak-server-spi-private</artifactId>40</dependency>41<dependency>42<groupId>org.keycloak</groupId>43<artifactId>keycloak-services</artifactId>44</dependency>45<dependency>46<groupId>org.eclipse.microprofile.openapi</groupId>47<artifactId>microprofile-openapi-api</artifactId>48</dependency>49<dependency>50<groupId>io.quarkus.resteasy.reactive</groupId>51<artifactId>resteasy-reactive-common</artifactId>52</dependency>53</dependencies>54
55<build>56<plugins>57<plugin>58<artifactId>smallrye-open-api-maven-plugin</artifactId>59<groupId>io.smallrye</groupId>60<configuration>61<scanPackages>org.keycloak.admin.ui.rest</scanPackages>62</configuration>63<executions>64<execution>65<goals>66<goal>generate-schema</goal>67</goals>68</execution>69</executions>70</plugin>71</plugins>72</build>73
74</project>75