Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame^] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | feature-eelf |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 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 |
| 24 | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
| 25 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 26 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> |
| 27 | |
| 28 | <id>feature-eelf-package</id> |
| 29 | <formats> |
| 30 | <format>zip</format> |
| 31 | </formats> |
| 32 | |
| 33 | <includeBaseDirectory>false</includeBaseDirectory> |
| 34 | |
| 35 | <fileSets> |
| 36 | <fileSet> |
| 37 | <directory>target</directory> |
| 38 | <outputDirectory>lib/opt</outputDirectory> |
| 39 | <includes> |
| 40 | <include>feature-eelf-${project.version}.jar</include> |
| 41 | </includes> |
| 42 | </fileSet> |
| 43 | <fileSet> |
| 44 | <directory>target/assembly/</directory> |
| 45 | <outputDirectory>.</outputDirectory> |
| 46 | <excludes/> |
| 47 | </fileSet> |
| 48 | <fileSet> |
| 49 | <directory>.</directory> |
| 50 | <outputDirectory>lib</outputDirectory> |
| 51 | <includes> |
| 52 | <include>*.jar</include> |
| 53 | </includes> |
| 54 | </fileSet> |
| 55 | <fileSet> |
| 56 | <directory>src/main/install/config</directory> |
| 57 | <outputDirectory>config</outputDirectory> |
| 58 | </fileSet> |
| 59 | <fileSet> |
| 60 | <directory>src/main/install/bin</directory> |
| 61 | <outputDirectory>bin</outputDirectory> |
| 62 | <fileMode>0744</fileMode> |
| 63 | <excludes/> |
| 64 | </fileSet> |
| 65 | </fileSets> |
| 66 | |
| 67 | </assembly> |