ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2019 Nordix Foundation. |
Ram Krishna Verma | 9a96d62 | 2020-02-05 16:29:58 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 Bell Canada. |
Dragosh, Pamela (pd1248) | 2416900 | 2021-03-24 08:19:51 -0400 | [diff] [blame] | 5 | Modifications Copyright (C) 2021 AT&T Intellectual Property. |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 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 | |
| 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 Verma | 9a96d62 | 2020-02-05 16:29:58 -0500 | [diff] [blame] | 28 | <artifactId>pap-packages</artifactId> |
Ram Krishna Verma | f11fb3b | 2021-08-04 14:49:40 -0400 | [diff] [blame^] | 29 | <version>2.4.6-SNAPSHOT</version> |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 30 | </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 Verma | 9a96d62 | 2020-02-05 16:29:58 -0500 | [diff] [blame] | 39 | <artifactId>pap-main</artifactId> |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 40 | <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) | 2416900 | 2021-03-24 08:19:51 -0400 | [diff] [blame] | 67 | </project> |