Keycloak
93 строки · 3.6 Кб
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-parent</artifactId>23<groupId>org.keycloak</groupId>24<version>999.0.0-SNAPSHOT</version>25<relativePath>../../../../pom.xml</relativePath>26</parent>27
28<artifactId>keycloak-saml-wildfly-adapter-dist</artifactId>29<packaging>pom</packaging>30<name>Keycloak SAML Wildfly Adapter Distro</name>31<description/>32
33<dependencies>34<dependency>35<groupId>org.keycloak</groupId>36<artifactId>keycloak-saml-wildfly-modules</artifactId>37<type>zip</type>38</dependency>39</dependencies>40
41<build>42<plugins>43<plugin>44<groupId>org.apache.maven.plugins</groupId>45<artifactId>maven-dependency-plugin</artifactId>46<executions>47<execution>48<id>unpack</id>49<phase>prepare-package</phase>50<goals>51<goal>unpack</goal>52</goals>53<configuration>54<artifactItems>55<artifactItem>56<groupId>org.keycloak</groupId>57<artifactId>keycloak-saml-wildfly-modules</artifactId>58<type>zip</type>59<outputDirectory>${project.build.directory}/unpacked</outputDirectory>60</artifactItem>61</artifactItems>62</configuration>63</execution>64
65</executions>66</plugin>67<plugin>68<artifactId>maven-assembly-plugin</artifactId>69<executions>70<execution>71<id>assemble</id>72<phase>package</phase>73<goals>74<goal>single</goal>75</goals>76<configuration>77<descriptors>78<descriptor>assembly.xml</descriptor>79</descriptors>80<outputDirectory>81target
82</outputDirectory>83<workDirectory>84target/assembly/work
85</workDirectory>86<appendAssemblyId>false</appendAssemblyId>87</configuration>88</execution>89</executions>90</plugin>91</plugins>92</build>93</project>94