blob: 216376fd66e4992dff1773615c81ee5d4568cc3c [file] [log] [blame]
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05001<!--
2 ============LICENSE_START=======================================================
3 policy-management
4 ================================================================================
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 Hernandez1bd54562017-08-02 09:48:57 -050027 <id>pdpd</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>
37 <outputDirectory>lib</outputDirectory>
38 <includes>
39 <include>policy-management-${project.version}.jar</include>
40 </includes>
41 </fileSet>
42 <fileSet>
43 <directory>target/assembly/</directory>
44 <outputDirectory>.</outputDirectory>
Jorge Hernandez1bd54562017-08-02 09:48:57 -050045 <excludes/>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050046 </fileSet>
47 <fileSet>
48 <directory>.</directory>
49 <outputDirectory>lib</outputDirectory>
50 <includes>
51 <include>*.jar</include>
52 </includes>
53 </fileSet>
54 <fileSet>
55 <directory>src/main/server-gen/bin</directory>
56 <outputDirectory>bin</outputDirectory>
57 <fileMode>0744</fileMode>
58 <excludes>
59 </excludes>
60 </fileSet>
61 <fileSet>
62 <directory>src/main/server/bin</directory>
63 <outputDirectory>bin</outputDirectory>
64 <fileMode>0744</fileMode>
65 <excludes>
66 </excludes>
67 </fileSet>
68 <fileSet>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050069 <directory>src/main/server/config</directory>
70 <outputDirectory>config</outputDirectory>
71 </fileSet>
Jorge Hernandez1bd54562017-08-02 09:48:57 -050072 <fileSet>
73 <directory>src/main/server/db</directory>
74 <outputDirectory>etc/db</outputDirectory>
75 </fileSet>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050076 </fileSets>
77
78</assembly>