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