Keycloak
53 строки · 2.0 Кб
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<build xmlns="urn:wildfly:feature-pack-build:1.0">19<dependencies>20<artifact name="${feature.parent}" />21</dependencies>22<config>23<standalone template="configuration/standalone/template.xml" subsystems="configuration/standalone/subsystems.xml" output-file="standalone/configuration/standalone.xml" />24<domain template="configuration/domain/template.xml" subsystems="configuration/domain/subsystems.xml" output-file="domain/configuration/domain.xml" />25</config>26
27<copy-artifacts>28</copy-artifacts>29<mkdirs>30</mkdirs>31
32<file-permissions>33<permission value="755">34<filter pattern="*.sh" include="true"/>35</permission>36<permission value="700">37<filter pattern="*/tmp/auth" include="true"/>38</permission>39<permission value="600">40<filter pattern="*-users.properties" include="true" />41<filter pattern="*/.installation" include="true"/>42</permission>43</file-permissions>44<line-endings>45<windows>46<filter pattern="*.bat" include="true"/>47</windows>48<unix>49<filter pattern="*.sh" include="true"/>50<filter pattern="*.conf" include="true"/>51</unix>52</line-endings>53</build>