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. |
FrancescoFioraEst | b714542 | 2023-09-06 09:54:17 +0100 | [diff] [blame] | 5 | Modifications Copyright (C) 2023 Nordix Foundation. |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [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.xacml-pdp</groupId> |
Ram Krishna Verma | ec3592f | 2020-02-05 16:32:11 -0500 | [diff] [blame] | 28 | <artifactId>xacml-packages</artifactId> |
FrancescoFioraEst | b714542 | 2023-09-06 09:54:17 +0100 | [diff] [blame] | 29 | <version>3.0.1-SNAPSHOT</version> |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>policy-xacmlpdp-tarball</artifactId> |
| 33 | <name>${project.artifactId}</name> |
| 34 | <description>Creates the zip pacakge of entire Xacml PDP component</description> |
| 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.onap.policy.xacml-pdp</groupId> |
Ram Krishna Verma | ec3592f | 2020-02-05 16:32:11 -0500 | [diff] [blame] | 39 | <artifactId>xacml-main</artifactId> |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [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> |
| 67 | </project> |