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