Keycloak
93 строки · 3.8 Кб
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<parent>22<artifactId>keycloak-adapters-distribution-parent</artifactId>23<groupId>org.keycloak</groupId>24<version>999.0.0-SNAPSHOT</version>25</parent>26
27<properties>28<wildfly.version>23.0.2.Final</wildfly.version>29<wildfly.build-tools.version>1.2.13.Final</wildfly.build-tools.version>30<wildfly.core.version>15.0.1.Final</wildfly.core.version>31<org.wildfly.galleon-plugins.version>5.1.3.Final</org.wildfly.galleon-plugins.version>32<assemblyFile>assembly.xml</assemblyFile>33</properties>34
35<artifactId>keycloak-wildfly-adapter-dist</artifactId>36<packaging>pom</packaging>37<name>Keycloak Adapter Overlay Distribution</name>38<description/>39
40<dependencies>41<dependency>42<groupId>org.keycloak</groupId>43<artifactId>keycloak-adapter-feature-pack</artifactId>44<type>zip</type>45</dependency>46</dependencies>47
48<build>49<plugins>50<plugin>51<groupId>org.wildfly.build</groupId>52<artifactId>wildfly-server-provisioning-maven-plugin</artifactId>53<version>${wildfly.build-tools.version}</version>54<executions>55<execution>56<id>server-provisioning</id>57<goals>58<goal>build</goal>59</goals>60<phase>compile</phase>61<configuration>62<config-file>server-provisioning.xml</config-file>63<overlay>true</overlay>64</configuration>65</execution>66</executions>67</plugin>68<plugin>69<groupId>org.apache.maven.plugins</groupId>70<artifactId>maven-assembly-plugin</artifactId>71<executions>72<execution>73<id>assemble</id>74<phase>package</phase>75<goals>76<goal>single</goal>77</goals>78<configuration>79<descriptors>80<descriptor>${assemblyFile}</descriptor>81</descriptors>82<recompressZippedFiles>true</recompressZippedFiles>83<finalName>${project.build.finalName}</finalName>84<appendAssemblyId>false</appendAssemblyId>85<outputDirectory>${project.build.directory}</outputDirectory>86<workDirectory>${project.build.directory}/assembly/work</workDirectory>87</configuration>88</execution>89</executions>90</plugin>91</plugins>92</build>93</project>94