blob: 47c70c6dcfd3d68c15b29558aaa750c6ef5ca1b9 [file] [log] [blame]
ramvermad1a702c2019-02-11 15:20:09 +00001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2019 Nordix Foundation.
Pamela Dragoshe1bb12b2020-01-14 20:29:46 -05004 Modifications Copyright (C) 2020 AT&T Intellectual Property.
Ram Krishna Verma9a96d622020-02-05 16:29:58 -05005 Modifications Copyright (C) 2020 Bell Canada.
ramvermad1a702c2019-02-11 15:20:09 +00006 ================================================================================
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"
adheli.tavares42c18ef2023-08-17 22:09:58 +010024 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
ramvermad1a702c2019-02-11 15:20:09 +000025 <modelVersion>4.0.0</modelVersion>
26 <parent>
27 <groupId>org.onap.policy.pap</groupId>
28 <artifactId>policy-pap</artifactId>
adheli.tavares42c18ef2023-08-17 22:09:58 +010029 <version>3.0.1-SNAPSHOT</version>
ramvermad1a702c2019-02-11 15:20:09 +000030 </parent>
31
Ram Krishna Verma9a96d622020-02-05 16:29:58 -050032 <artifactId>pap-packages</artifactId>
ramvermad1a702c2019-02-11 15:20:09 +000033 <packaging>pom</packaging>
34
35 <name>${project.artifactId}</name>
36 <description>The module for packaging the PAP component.</description>
37
Pamela Dragoshe1bb12b2020-01-14 20:29:46 -050038 <properties>
adheli.tavares42c18ef2023-08-17 22:09:58 +010039 <!-- There is no code in this submodule, only holds interfaces. So skip sonar. -->
Pamela Dragoshe1bb12b2020-01-14 20:29:46 -050040 <sonar.skip>true</sonar.skip>
41 </properties>
42
ramvermad1a702c2019-02-11 15:20:09 +000043 <profiles>
44 <profile>
45 <id>default</id>
46 <activation>
47 <activeByDefault>true</activeByDefault>
48 </activation>
jhh2852ea62019-11-19 10:04:57 -060049 <modules>
50 <module>policy-pap-tarball</module>
51 </modules>
ramvermad1a702c2019-02-11 15:20:09 +000052 </profile>
53 <profile>
54 <id>docker</id>
55 <modules>
56 <module>policy-pap-tarball</module>
57 <module>policy-pap-docker</module>
58 </modules>
59 <properties>
60 <docker.skip.push>false</docker.skip.push>
danielhanrahanf145be72022-05-19 10:53:50 +010061 <dockerFile>Dockerfile</dockerFile>
62 </properties>
63 </profile>
64 <profile>
65 <id>dockersuse</id>
66 <modules>
67 <module>policy-pap-tarball</module>
68 <module>policy-pap-docker</module>
69 </modules>
70 <properties>
71 <docker.skip.push>false</docker.skip.push>
72 <dockerFile>suse.Dockerfile</dockerFile>
ramvermad1a702c2019-02-11 15:20:09 +000073 </properties>
74 </profile>
75 </profiles>
jhh2852ea62019-11-19 10:04:57 -060076</project>