Add feature aggregator for sdnc-northbound
[sdnc/northbound.git] / generic-resource-api / installer / src / assembly / assemble_mvnrepo_zip.xml
1 <!-- ============LICENSE_START=======================================================
2     openECOMP : SDN-C ================================================================================
3     Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. ================================================================================
4     Licensed under the Apache License, Version 2.0 (the "License"); you may not
5     use this file except in compliance with the License. You may obtain a copy
6     of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
7     by applicable law or agreed to in writing, software distributed under the
8     License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
9     OF ANY KIND, either express or implied. See the License for the specific
10     language governing permissions and limitations under the License. ============LICENSE_END========================================================= -->
11
12 <!-- Defines how we build the .zip file which is our distribution. -->
13
14 <assembly
15     xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
16     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17     xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
18     <id>repo</id>
19     <formats>
20         <format>zip</format>
21     </formats>
22
23     <!-- we want "system" and related files right at the root level as this
24         file is suppose to be unzip on top of a karaf distro. -->
25     <includeBaseDirectory>false</includeBaseDirectory>
26
27     <fileSets>
28         <fileSet>
29             <directory>target/assembly/</directory>
30             <outputDirectory>.</outputDirectory>
31             <excludes>
32             </excludes>
33         </fileSet>
34     </fileSets>
35
36     <files>
37         <file>
38             <source>../model/target/generic-resource-api.properties</source>
39             <destName>./configuration/generic-resource-api.properties</destName>
40
41         </file>
42     </files>
43
44 </assembly>