Keycloak
103 строки · 3.7 Кб
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-client-cli-parent</artifactId>23<groupId>org.keycloak</groupId>24<version>999.0.0-SNAPSHOT</version>25</parent>26
27<artifactId>keycloak-client-cli-dist</artifactId>28<packaging>pom</packaging>29<name>Keycloak Client CLI Distribution</name>30<description/>31
32<dependencies>33<dependency>34<groupId>org.keycloak</groupId>35<artifactId>keycloak-client-registration-cli</artifactId>36</dependency>37<dependency>38<groupId>org.keycloak</groupId>39<artifactId>keycloak-admin-cli</artifactId>40</dependency>41<dependency>42<groupId>org.keycloak</groupId>43<artifactId>keycloak-crypto-default</artifactId>44<exclusions>45<exclusion>46<groupId>*</groupId>47<artifactId>*</artifactId>48</exclusion>49</exclusions>50</dependency>51<dependency>52<groupId>org.keycloak</groupId>53<artifactId>keycloak-crypto-fips1402</artifactId>54<exclusions>55<exclusion>56<groupId>*</groupId>57<artifactId>*</artifactId>58</exclusion>59</exclusions>60</dependency>61<dependency>62<groupId>org.bouncycastle</groupId>63<artifactId>bcprov-jdk18on</artifactId>64<exclusions>65<exclusion>66<groupId>*</groupId>67<artifactId>*</artifactId>68</exclusion>69</exclusions>70</dependency>71</dependencies>72
73<build>74<finalName>keycloak-client-cli-${project.version}</finalName>75<plugins>76<plugin>77<artifactId>maven-assembly-plugin</artifactId>78<executions>79<execution>80<id>assemble</id>81<phase>package</phase>82<goals>83<goal>single</goal>84</goals>85<configuration>86<descriptors>87<descriptor>assembly.xml</descriptor>88</descriptors>89<outputDirectory>90target
91</outputDirectory>92<workDirectory>93target/assembly/work
94</workDirectory>95<appendAssemblyId>false</appendAssemblyId>96</configuration>97</execution>98</executions>99</plugin>100</plugins>101</build>102
103</project>104