Keycloak
66 строк · 2.5 Кб
1
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<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-docs-parent</artifactId>22<groupId>org.keycloak</groupId>23<version>999.0.0-SNAPSHOT</version>24<relativePath>../pom.xml</relativePath>25</parent>26
27<modelVersion>4.0.0</modelVersion>28
29<name>Keycloak Guides Maven Plugin</name>30<artifactId>keycloak-guides-maven-plugin</artifactId>31<description>Keycloak Guides Maven Plugin</description>32<packaging>maven-plugin</packaging>33
34<properties>35<maven.compiler.release>17</maven.compiler.release>36<maven.compiler.source>17</maven.compiler.source>37<maven.compiler.target>17</maven.compiler.target>38</properties>39
40<dependencies>41<dependency>42<groupId>org.apache.maven</groupId>43<artifactId>maven-plugin-api</artifactId>44<version>${maven.version}</version>45</dependency>46<dependency>47<groupId>org.apache.maven.plugin-tools</groupId>48<artifactId>maven-plugin-annotations</artifactId>49<version>${maven.plugins.version}</version>50<scope>provided</scope>51</dependency>52<dependency>53<groupId>org.apache.maven</groupId>54<artifactId>maven-core</artifactId>55<version>${maven.version}</version>56</dependency>57<dependency>58<groupId>org.keycloak</groupId>59<artifactId>keycloak-quarkus-server-deployment</artifactId>60</dependency>61<dependency>62<groupId>org.freemarker</groupId>63<artifactId>freemarker</artifactId>64</dependency>65</dependencies>66
67</project>68