blob: 7b0ad932bb1f491ee5b777bc2e0b853a8e4ad13b [file] [log] [blame]
ramvermad1a702c2019-02-11 15:20:09 +00001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2019 Nordix Foundation.
Ram Krishna Verma9a96d622020-02-05 16:29:58 -05004 Modifications Copyright (C) 2020 Bell Canada.
Dragosh, Pamela (pd1248)24169002021-03-24 08:19:51 -04005 Modifications Copyright (C) 2021 AT&T Intellectual Property.
ramvermad1a702c2019-02-11 15:20:09 +00006 ================================================================================
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
19 SPDX-License-Identifier: Apache-2.0
20 ============LICENSE_END=========================================================
21-->
22
23<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <parent>
27 <groupId>org.onap.policy.pap</groupId>
Ram Krishna Verma9a96d622020-02-05 16:29:58 -050028 <artifactId>pap-packages</artifactId>
Ram Krishna Vermaf11fb3b2021-08-04 14:49:40 -040029 <version>2.4.6-SNAPSHOT</version>
ramvermad1a702c2019-02-11 15:20:09 +000030 </parent>
31
32 <artifactId>policy-pap-tarball</artifactId>
33 <name>${project.artifactId}</name>
34 <description>The module for creating zip package of entire PAP component.</description>
35
36 <dependencies>
37 <dependency>
38 <groupId>org.onap.policy.pap</groupId>
Ram Krishna Verma9a96d622020-02-05 16:29:58 -050039 <artifactId>pap-main</artifactId>
ramvermad1a702c2019-02-11 15:20:09 +000040 <version>${project.version}</version>
41 </dependency>
42 </dependencies>
43
44 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-assembly-plugin</artifactId>
49 <executions>
50 <execution>
51 <id>generate-complete-tar</id>
52 <phase>package</phase>
53 <goals>
54 <goal>single</goal>
55 </goals>
56 <configuration>
57 <descriptors>
58 <descriptor>src/main/package/tarball/assembly.xml</descriptor>
59 </descriptors>
60 <finalName>${project.artifactId}-${project.version}</finalName>
61 </configuration>
62 </execution>
63 </executions>
64 </plugin>
65 </plugins>
66 </build>
Dragosh, Pamela (pd1248)24169002021-03-24 08:19:51 -040067</project>