ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame^] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | OpenECOMP 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>mso-db</id> |
| 26 | |
| 27 | <formats> |
| 28 | <format>zip</format> |
| 29 | </formats> |
| 30 | <includeBaseDirectory>false</includeBaseDirectory> |
| 31 | |
| 32 | <fileSets> |
| 33 | |
| 34 | <!-- include MSO Extra files (scripts, db scripts) --> |
| 35 | <fileSet> |
| 36 | <includes> |
| 37 | <include>**/</include> |
| 38 | </includes> |
| 39 | <directory>../../packages/root-pack-extras/config-resources/mariadb/db-sql-scripts</directory> |
| 40 | <outputDirectory>/</outputDirectory> |
| 41 | </fileSet> |
| 42 | |
| 43 | </fileSets> |
| 44 | </assembly> |