Daniel Cruz | 62e4281 | 2019-02-22 11:31:17 -0600 | [diff] [blame] | 1 | <!--
|
| 2 | ============LICENSE_START=======================================================
|
| 3 | feature-controller-logging
|
| 4 | ================================================================================
|
| 5 | Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
|
| 6 | ================================================================================
|
| 7 | Licensed under the Apache License, Version 2.0 (the "License");
|
| 8 | you may not use this file except in compliance with the License.
|
| 9 | You may obtain a copy of the License at
|
| 10 |
|
| 11 | http://www.apache.org/licenses/LICENSE-2.0
|
| 12 |
|
| 13 | Unless required by applicable law or agreed to in writing, software
|
| 14 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 16 | See the License for the specific language governing permissions and
|
| 17 | limitations under the License.
|
| 18 | ============LICENSE_END=========================================================
|
| 19 | -->
|
| 20 |
|
| 21 | <!-- Defines how we build the .zip file which is our distribution. -->
|
| 22 |
|
| 23 | <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
| 24 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 25 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
| 26 | <id>feature-controller-logging</id>
|
| 27 | <formats>
|
| 28 | <format>zip</format>
|
| 29 | </formats>
|
| 30 |
|
| 31 | <includeBaseDirectory>false</includeBaseDirectory>
|
| 32 |
|
| 33 | <fileSets>
|
| 34 | <fileSet>
|
| 35 | <directory>target</directory>
|
| 36 | <outputDirectory>lib/feature</outputDirectory>
|
| 37 | <includes>
|
| 38 | <include>feature-controller-logging-${project.version}.jar</include>
|
| 39 | </includes>
|
| 40 | </fileSet>
|
| 41 | <fileSet>
|
| 42 | <directory>target/assembly/lib</directory>
|
| 43 | <outputDirectory>lib/dependencies</outputDirectory>
|
| 44 | <includes>
|
| 45 | <include>*.jar</include>
|
| 46 | </includes>
|
| 47 | </fileSet>
|
| 48 | <fileSet>
|
| 49 | <directory>src/main/feature/config</directory>
|
| 50 | <outputDirectory>config</outputDirectory>
|
| 51 | <fileMode>0644</fileMode>
|
| 52 | <excludes />
|
| 53 | </fileSet>
|
| 54 | <fileSet>
|
| 55 | <directory>src/main/feature/bin</directory>
|
| 56 | <outputDirectory>bin</outputDirectory>
|
| 57 | <fileMode>0744</fileMode>
|
| 58 | <excludes />
|
| 59 | </fileSet>
|
| 60 | <fileSet>
|
| 61 | <directory>src/main/feature/install</directory>
|
| 62 | <outputDirectory>install</outputDirectory>
|
| 63 | <fileMode>0744</fileMode>
|
| 64 | <excludes />
|
| 65 | </fileSet>
|
| 66 | </fileSets>
|
| 67 |
|
| 68 | </assembly>
|