blob: bafbe4e069a42ac1cf98dbe72bc32e96a0a7e742 [file] [log] [blame]
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -05001<!--
2 ============LICENSE_START=======================================================
Pamela Dragosh60592582021-02-24 07:16:07 -05003 Copyright (C) 2019,2021 AT&T Intellectual Property. All rights reserved.
Ram Krishna Verma1d4ce8d2020-02-05 16:28:33 -05004 Modifications Copyright (C) 2020 Bell Canada.
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -05005 ================================================================================
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.api</groupId>
Ram Krishna Verma1d4ce8d2020-02-05 16:28:33 -050027 <artifactId>api-packages</artifactId>
liamfallone2c54ea2022-04-28 16:00:25 +010028 <version>2.6.4-SNAPSHOT</version>
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -050029 </parent>
30
31 <artifactId>policy-api-tarball</artifactId>
32 <name>${project.artifactId}</name>
33 <description>[${project.parent.artifactId}]</description>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.onap.policy.api</groupId>
Ram Krishna Verma1d4ce8d2020-02-05 16:28:33 -050038 <artifactId>api-main</artifactId>
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -050039 <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>