Determe, Sebastien (sd378r) | e0d94f6 | 2018-05-25 15:14:08 +0200 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ECOMP MSO |
| 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 | <assembly |
| 22 | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd"> |
| 25 | <id>clamp-files</id> |
| 26 | |
| 27 | <formats> |
| 28 | <format>tar.gz</format> |
| 29 | </formats> |
| 30 | <includeBaseDirectory>false</includeBaseDirectory> |
| 31 | |
| 32 | |
| 33 | <fileSets> |
| 34 | <!-- include config files --> |
| 35 | <fileSet> |
| 36 | <includes> |
| 37 | <include>${project.build.finalName}.jar</include> |
| 38 | </includes> |
| 39 | <directory>${project.build.directory}</directory> |
| 40 | <outputDirectory>/</outputDirectory> |
| 41 | </fileSet> |
| 42 | <fileSet> |
| 43 | <includes> |
| 44 | <include>>etc/config/**</include> |
| 45 | </includes> |
| 46 | <directory>${project.build.directory}</directory> |
| 47 | <outputDirectory>/</outputDirectory> |
| 48 | </fileSet> |
| 49 | <fileSet> |
| 50 | <includes> |
| 51 | <include>etc/keystore/**</include> |
| 52 | </includes> |
| 53 | <directory>${project.build.directory}</directory> |
| 54 | <outputDirectory>/</outputDirectory> |
| 55 | </fileSet> |
Determe, Sebastien (sd378r) | e0d94f6 | 2018-05-25 15:14:08 +0200 | [diff] [blame] | 56 | </fileSets> |
| 57 | |
| 58 | </assembly> |