diff options
author | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-06-22 15:51:57 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-06-22 15:51:57 -0400 |
commit | cd11ecb3d0216e4e81be4964a4bc6a50aa29bbe7 (patch) | |
tree | 3a7a610f3557012388c162708c79cf5a37378d07 /features/installer/src/assembly/assemble_installer_zip.xml | |
parent | a63bbe21b7394951d782b6f8f0769dfcbc616dd0 (diff) |
Add feature aggregator
Add feature aggregator ccsdk-sli-northbound-all so that all
sli-northbound karaf features can be added as one feature.
Change-Id: I5133215c8df472e189d1b24f5b747927f305ac28
Issue-ID: CCSDK-282
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
Diffstat (limited to 'features/installer/src/assembly/assemble_installer_zip.xml')
-rwxr-xr-x | features/installer/src/assembly/assemble_installer_zip.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/features/installer/src/assembly/assemble_installer_zip.xml b/features/installer/src/assembly/assemble_installer_zip.xml new file mode 100755 index 000000000..a6a22a9ba --- /dev/null +++ b/features/installer/src/assembly/assemble_installer_zip.xml @@ -0,0 +1,39 @@ +<!-- Defines how we build the .zip file which is our distribution. --> + +<assembly + xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> + <id>bin</id> + + <formats> + <format>zip</format> + </formats> + + <!-- we want "system" and related files right at the root level + as this file is suppose to be unzip on top of a karaf + distro. --> + <includeBaseDirectory>false</includeBaseDirectory> + + <fileSets> + <fileSet> + <directory>target/stage/</directory> + <outputDirectory>${application.name}</outputDirectory> + <fileMode>755</fileMode> + <includes> + <include>*.sh</include> + </includes> + </fileSet> + <fileSet> + <directory>target/stage/</directory> + <outputDirectory>${application.name}</outputDirectory> + <fileMode>644</fileMode> + <excludes> + <exclude>*.sh</exclude> + </excludes> + </fileSet> + </fileSets> + + + +</assembly> |