summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02-installer/src/assembly/assemble_mvnrepo_zip.xml
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2023-06-06 06:21:43 -0400
committerDan Timoney <dtimoney@att.com>2023-06-06 06:21:43 -0400
commit1ad367386f315646cec9cd4b179e8e941a19970a (patch)
tree5f8b2c8682f7f84323e62b8d917d439d95c68a4c /netconf/restconf/restconf-nb-bierman02-installer/src/assembly/assemble_mvnrepo_zip.xml
parentbd55b57ddab7d3c6bbc5cbe458a3c6dfd9f08d58 (diff)
Add installer for Bierman API
Add installer for Bierman API feature Issue-ID: CCSDK-3876 Signed-off-by: Dan Timoney <dtimoney@att.com> Change-Id: Ia9228e18579ed37a8ed6b9800f06a77ca7faad3c
Diffstat (limited to 'netconf/restconf/restconf-nb-bierman02-installer/src/assembly/assemble_mvnrepo_zip.xml')
-rwxr-xr-xnetconf/restconf/restconf-nb-bierman02-installer/src/assembly/assemble_mvnrepo_zip.xml48
1 files changed, 48 insertions, 0 deletions
diff --git a/netconf/restconf/restconf-nb-bierman02-installer/src/assembly/assemble_mvnrepo_zip.xml b/netconf/restconf/restconf-nb-bierman02-installer/src/assembly/assemble_mvnrepo_zip.xml
new file mode 100755
index 0000000..325b72b
--- /dev/null
+++ b/netconf/restconf/restconf-nb-bierman02-installer/src/assembly/assemble_mvnrepo_zip.xml
@@ -0,0 +1,48 @@
+<!--
+ ~ ============LICENSE_START=======================================================
+ ~ ONAP : ccsdk features
+ ~ ================================================================================
+ ~ Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
+ ~ ================================================================================
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
+ ~ you may not use this file except in compliance with the License.
+ ~ You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License.
+ ~ ============LICENSE_END=======================================================
+ ~
+ -->
+
+<!-- Defines how we build the .zip file which is our distribution. -->
+
+<assembly
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
+ 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>