Add feature aggregator for sdnc-northbound
[sdnc/northbound.git] / features / installer / src / assembly / assemble_mvnrepo_zip.xml
1 <!-- Defines how we build the .zip file which is our distribution. -->
2
3 <assembly
4         xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
5         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6         xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
7         <id>repo</id>
8
9         <formats>
10                 <format>zip</format>
11         </formats>
12
13         <!--  we want "system" and related files right at the root level
14                   as this file is suppose to be unzip on top of a karaf
15                   distro. -->
16         <includeBaseDirectory>false</includeBaseDirectory>
17
18         <fileSets>
19                 <fileSet>
20                         <directory>target/assembly/</directory>
21                         <outputDirectory>.</outputDirectory>
22                         <excludes>
23                         </excludes>
24                 </fileSet>
25         </fileSets>
26
27
28
29 </assembly>