blob: 640f7039cacf49ef40b2e4e386ca420e9c6f0d09 [file] [log] [blame]
Patrick Bradyc7d00752017-06-01 10:45:37 -07001<!--
2 ============LICENSE_START=======================================================
Patrick Brady10bba352017-07-19 12:09:28 -07003 ONAP : APPC
Patrick Bradyc7d00752017-06-01 10:45:37 -07004 ================================================================================
John McClunga8027392018-06-13 15:49:08 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Patrick Bradyc7d00752017-06-01 10:45:37 -07006 ================================================================================
Patrick Brady10bba352017-07-19 12:09:28 -07007 Copyright (C) 2017 Amdocs
8 =============================================================================
Patrick Bradyc7d00752017-06-01 10:45:37 -07009 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
Patrick Brady10bba352017-07-19 12:09:28 -070020
Patrick Brady10bba352017-07-19 12:09:28 -070021 ============LICENSE_END=========================================================
Patrick Bradyc7d00752017-06-01 10:45:37 -070022 -->
23
24<!-- Defines how we build the .zip file which is our distribution. -->
25
26<assembly
27 xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
28 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
29 xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
30 <id>controller</id>
31 <formats>
32 <format>zip</format>
33 </formats>
34
35 <!-- we want "system" and related files right at the root level
36 as this file is suppose to be unzip on top of a karaf
37 distro. -->
38 <includeBaseDirectory>false</includeBaseDirectory>
39
40 <fileSets>
41 <fileSet>
42 <directory>target/stage/</directory>
43 <outputDirectory>${application.name}</outputDirectory>
44 <fileMode>755</fileMode>
45 <includes>
46 <include>*.sh</include>
47 </includes>
48 </fileSet>
49 <fileSet>
50 <directory>target/stage/</directory>
51 <outputDirectory>${application.name}</outputDirectory>
52 <fileMode>644</fileMode>
53 <excludes>
54 <exclude>*.sh</exclude>
55 </excludes>
56 </fileSet>
57 </fileSets>
58
59
60
61</assembly>