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