blob: 0b65f8f5d99c43ceb3d9bfa6f7d027653e70a40f [file] [log] [blame]
Michael Mokryab1824d2019-02-13 10:34:48 -06001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
Ram Krishna Vermaec3592f2020-02-05 16:32:11 -05004 Modifications Copyright (C) 2020 Bell Canada.
FrancescoFioraEstb7145422023-09-06 09:54:17 +01005 Modifications Copyright (C) 2023 Nordix Foundation.
Michael Mokryab1824d2019-02-13 10:34:48 -06006 ================================================================================
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 Vermaec3592f2020-02-05 16:32:11 -050028 <artifactId>xacml-packages</artifactId>
FrancescoFioraEstb7145422023-09-06 09:54:17 +010029 <version>3.0.1-SNAPSHOT</version>
Michael Mokryab1824d2019-02-13 10:34:48 -060030 </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 Vermaec3592f2020-02-05 16:32:11 -050039 <artifactId>xacml-main</artifactId>
Michael Mokryab1824d2019-02-13 10:34:48 -060040 <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>