blob: 0e2eaa8b1a9931467dbbca8ab2cf538e6140eada [file] [log] [blame]
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05001<!--
2 ============LICENSE_START=======================================================
Kevin McKiou36cf73f2017-08-22 16:08:06 -05003 feature-healthcheck
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05004 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 -->
20
21<!-- Defines how we build the .zip file which is our distribution. -->
22
23<assembly
24 xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
Jorge Hernandezae4a9352017-07-18 01:06:39 -050027 <id>feature-healthcheck-package</id>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050028 <formats>
29 <format>zip</format>
30 </formats>
31
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050032 <includeBaseDirectory>false</includeBaseDirectory>
33
34 <fileSets>
35 <fileSet>
36 <directory>target</directory>
Jorge Hernandezae4a9352017-07-18 01:06:39 -050037 <outputDirectory>lib/feature</outputDirectory>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050038 <includes>
Jorge Hernandez564f8182017-06-30 13:29:03 -050039 <include>feature-healthcheck-${project.version}.jar</include>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050040 </includes>
41 </fileSet>
42 <fileSet>
Jorge Hernandezae4a9352017-07-18 01:06:39 -050043 <directory>target/assembly/lib</directory>
44 <outputDirectory>lib/dependencies</outputDirectory>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050045 <includes>
46 <include>*.jar</include>
47 </includes>
48 </fileSet>
49 <fileSet>
Jorge Hernandezae4a9352017-07-18 01:06:39 -050050 <directory>src/main/feature/config</directory>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050051 <outputDirectory>config</outputDirectory>
Jorge Hernandezae4a9352017-07-18 01:06:39 -050052 <fileMode>0644</fileMode>
53 <excludes/>
54 </fileSet>
55 <fileSet>
56 <directory>src/main/feature/bin</directory>
57 <outputDirectory>bin</outputDirectory>
58 <fileMode>0744</fileMode>
59 <excludes/>
60 </fileSet>
61 <fileSet>
62 <directory>src/main/feature/db</directory>
63 <outputDirectory>db</outputDirectory>
64 <fileMode>0744</fileMode>
65 <excludes/>
66 </fileSet>
67 <fileSet>
68 <directory>src/main/feature/install</directory>
69 <outputDirectory>install</outputDirectory>
70 <fileMode>0744</fileMode>
71 <excludes/>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050072 </fileSet>
73 </fileSets>
74
75</assembly>