Update license header in appc xml files
[appc.git] / appc-provider / appc-provider-installer / src / assembly / assemble_installer_zip.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP : APPC
4   ================================================================================
5   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6   ================================================================================
7   Copyright (C) 2017 Amdocs
8   =============================================================================
9   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.
20   
21   ============LICENSE_END=========================================================
22   -->
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>