Initial commit for OpenECOMP SDN-C N-C core
[sdnc/core.git] / dblib / 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         <formats>
8                 <format>zip</format>
9         </formats>
10
11         <!--  we want "system" and related files right at the root level
12                   as this file is suppose to be unzip on top of a karaf
13                   distro. -->
14         <includeBaseDirectory>false</includeBaseDirectory>
15
16         <fileSets>
17                 <fileSet>
18                         <directory>target/assembly/</directory>
19                         <outputDirectory>.</outputDirectory>
20                         <excludes>
21                         </excludes>
22                 </fileSet>
23         </fileSets>
24
25
26
27 </assembly>