Add feature aggregator for sdnc-northbound
[sdnc/northbound.git] / features / installer / src / assembly / assemble_installer_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>bin</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/stage/</directory>
21                         <outputDirectory>${application.name}</outputDirectory>
22                         <fileMode>755</fileMode>
23                         <includes>
24                                 <include>*.sh</include>
25                         </includes>
26                 </fileSet>
27                 <fileSet>
28                         <directory>target/stage/</directory>
29                         <outputDirectory>${application.name}</outputDirectory>
30                         <fileMode>644</fileMode>
31                         <excludes>
32                                 <exclude>*.sh</exclude>
33                         </excludes>
34                 </fileSet>
35         </fileSets>
36
37
38
39 </assembly>