Keycloak
45 строк · 1.8 Кб
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3~ Copyright 2016 Red Hat, Inc. and/or its affiliates
4~ and other contributors as indicated by the @author tags.
5~
6~ Licensed under the Apache License, Version 2.0 (the "License");
7~ you may not use this file except in compliance with the License.
8~ You may obtain a copy of the License at
9~
10~ http://www.apache.org/licenses/LICENSE-2.0
11~
12~ Unless required by applicable law or agreed to in writing, software
13~ distributed under the License is distributed on an "AS IS" BASIS,
14~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15~ See the License for the specific language governing permissions and
16~ limitations under the License.
17-->
18
19<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"20xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">21<id>feature-pack</id>22<formats>23<format>zip</format>24</formats>25<includeBaseDirectory>false</includeBaseDirectory>26<fileSets>27<fileSet>28<directory>target/${project.build.finalName}</directory>29<outputDirectory/>30</fileSet>31
32<!-- License Data -->33<fileSet>34<directory>src/main/resources/licenses/keycloak</directory>35<outputDirectory>content/docs/licenses-keycloak</outputDirectory>36<excludes>37<exclude>licenses.xml</exclude>38</excludes>39</fileSet>40<fileSet>41<directory>target/licenses</directory>42<outputDirectory>content/docs/licenses-keycloak</outputDirectory>43</fileSet>44</fileSets>45</assembly>46