Varun Gudisena | ca63da6 | 2017-08-30 16:00:10 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | org.onap.dmaap |
| 4 | ================================================================================ |
| 5 | Copyright © 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 | 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 | ============LICENSE_END========================================================= |
| 18 | |
| 19 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 20 | |
| 21 | --> |
| 22 | <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> |
| 25 | <id>bundle</id> |
| 26 | <formats> |
| 27 | <format>tar.gz</format> |
| 28 | </formats> |
| 29 | <files> |
| 30 | <file> |
| 31 | <source>target/DMaaP.war</source> |
| 32 | <outputDirectory>lib</outputDirectory> |
| 33 | </file> |
| 34 | </files> |
| 35 | <fileSets> |
| 36 | <fileSet> |
| 37 | <directory>src/main/scripts</directory> |
| 38 | <outputDirectory>bin</outputDirectory> |
| 39 | <includes> |
| 40 | <include>**/*.sh</include> |
| 41 | </includes> |
| 42 | <fileMode>0755</fileMode> |
| 43 | </fileSet> |
| 44 | <fileSet> |
| 45 | <directory>etc</directory> |
| 46 | <outputDirectory>etc</outputDirectory> |
| 47 | </fileSet> |
| 48 | </fileSets> |
| 49 | |
| 50 | </assembly> |