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