Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. |
Ram Krishna Verma | ec3592f | 2020-02-05 16:32:11 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 Bell Canada. |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
| 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.xacml-pdp</groupId> |
Ram Krishna Verma | ec3592f | 2020-02-05 16:32:11 -0500 | [diff] [blame] | 27 | <artifactId>xacml-packages</artifactId> |
Jim Hahn | 88a247e | 2019-09-10 11:14:09 -0400 | [diff] [blame] | 28 | <version>2.2.0-SNAPSHOT</version> |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>policy-xacmlpdp-tarball</artifactId> |
| 32 | <name>${project.artifactId}</name> |
| 33 | <description>Creates the zip pacakge of entire Xacml PDP component</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.policy.xacml-pdp</groupId> |
Ram Krishna Verma | ec3592f | 2020-02-05 16:32:11 -0500 | [diff] [blame] | 38 | <artifactId>xacml-main</artifactId> |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | </dependencies> |
| 42 | |
| 43 | <build> |
| 44 | <plugins> |
| 45 | <plugin> |
| 46 | <groupId>org.apache.maven.plugins</groupId> |
| 47 | <artifactId>maven-assembly-plugin</artifactId> |
| 48 | <executions> |
| 49 | <execution> |
| 50 | <id>generate-complete-tar</id> |
| 51 | <phase>package</phase> |
| 52 | <goals> |
| 53 | <goal>single</goal> |
| 54 | </goals> |
| 55 | <configuration> |
| 56 | <descriptors> |
| 57 | <descriptor>src/main/package/tarball/assembly.xml</descriptor> |
| 58 | </descriptors> |
| 59 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 60 | </configuration> |
| 61 | </execution> |
| 62 | </executions> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | </project> |