diff options
author | Dan Timoney <dt5972@att.com> | 2018-06-23 00:50:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-06-23 00:50:54 +0000 |
commit | fc45404afdc7770ffa2848b007127d9b6f682efe (patch) | |
tree | 1fc08caa86c535ceab0c5ff7f61cf743a6162709 /features/installer/src/assembly/assemble_mvnrepo_zip.xml | |
parent | a07b57086dd5c9c04f2b20a092da9935c7c5f817 (diff) | |
parent | cd11ecb3d0216e4e81be4964a4bc6a50aa29bbe7 (diff) |
Merge "Add feature aggregator"
Diffstat (limited to 'features/installer/src/assembly/assemble_mvnrepo_zip.xml')
-rwxr-xr-x | features/installer/src/assembly/assemble_mvnrepo_zip.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/features/installer/src/assembly/assemble_mvnrepo_zip.xml b/features/installer/src/assembly/assemble_mvnrepo_zip.xml new file mode 100755 index 000000000..86b07f1f3 --- /dev/null +++ b/features/installer/src/assembly/assemble_mvnrepo_zip.xml @@ -0,0 +1,29 @@ +<!-- 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>repo</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/assembly/</directory> + <outputDirectory>.</outputDirectory> + <excludes> + </excludes> + </fileSet> + </fileSets> + + + +</assembly> |