summaryrefslogtreecommitdiffstats
path: root/features/installer/src/assembly/assemble_installer_zip.xml
diff options
context:
space:
mode:
authorDan Timoney <dt5972@att.com>2018-06-23 00:50:34 +0000
committerGerrit Code Review <gerrit@onap.org>2018-06-23 00:50:34 +0000
commita328da0bda02ccfbfe3a09a2f599d9a9694a6ccb (patch)
tree9239cf00b7975cd8040f5a9569ce6c2fff55936e /features/installer/src/assembly/assemble_installer_zip.xml
parented8a53f82d780d3c8409e286bff238dc93e43e2b (diff)
parent84eab50f627a1a8c1a4362d373986718eefcecbc (diff)
Merge "Add feature aggregator"
Diffstat (limited to 'features/installer/src/assembly/assemble_installer_zip.xml')
-rwxr-xr-xfeatures/installer/src/assembly/assemble_installer_zip.xml39
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>
odeseshukm1-1/+1 2017-10-08Fixes for sonar coverage in bpmnRob Daugherty1-5/+3 2017-09-29Fix the SO build issuesDeterme, Sebastien (sd378r)1-150/+113 2017-09-081710 Rebase - Second AttemptArthur Martella1-6/+1 2017-08-04Another attempt to fix deploy problemRob Daugherty1-1/+1 2017-08-04Failed to deploy so artifacts in nexus (again)Rob Daugherty1-2/+2 2017-08-01Failed to deploy so artifacts in nexusRob Daugherty1-3/+3 2017-07-19Fix artifact group IDs (org.openecomp.so)Rob Daugherty1-2/+2 2017-04-11[MSO-8] Update the maven dependencyxg353y1-21/+24 2017-03-13Update to version 1.1.0ChrisC1-9/+9 2017-01-31Initial OpenECOMP MSO commitChrisC1-0/+159