Keycloak
69 строк · 2.5 Кб
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<assembly>19<id>keycloak-client-cli-dist</id>20
21<formats>22<format>zip</format>23</formats>24
25<includeBaseDirectory>false</includeBaseDirectory>26
27<files>28<file>29<source>../client-registration-cli/src/main/bin/kcreg.sh</source>30<outputDirectory>keycloak-client-tools/bin</outputDirectory>31<fileMode>0755</fileMode>32<filtered>true</filtered>33</file>34<file>35<source>../client-registration-cli/src/main/bin/kcreg.bat</source>36<outputDirectory>keycloak-client-tools/bin</outputDirectory>37<filtered>true</filtered>38</file>39<file>40<source>../admin-cli/src/main/bin/kcadm.sh</source>41<outputDirectory>keycloak-client-tools/bin</outputDirectory>42<fileMode>0755</fileMode>43<filtered>true</filtered>44</file>45<file>46<source>../admin-cli/src/main/bin/kcadm.bat</source>47<outputDirectory>keycloak-client-tools/bin</outputDirectory>48<filtered>true</filtered>49</file>50</files>51<dependencySets>52<dependencySet>53<includes>54<include>org.keycloak:keycloak-client-registration-cli</include>55<include>org.keycloak:keycloak-admin-cli</include>56</includes>57<outputDirectory>keycloak-client-tools/bin/client</outputDirectory>58</dependencySet>59<dependencySet>60<includes>61<include>org.keycloak:keycloak-crypto-default</include>62<include>org.keycloak:keycloak-crypto-fips1402</include>63<include>org.bouncycastle:bcprov-jdk18on</include>64</includes>65<outputDirectory>keycloak-client-tools/bin/client/lib</outputDirectory>66</dependencySet>67</dependencySets>68
69</assembly>70