ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2019 Nordix Foundation. |
Pamela Dragosh | e1bb12b | 2020-01-14 20:29:46 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 AT&T Intellectual Property. |
Ram Krishna Verma | 9a96d62 | 2020-02-05 16:29:58 -0500 | [diff] [blame] | 5 | Modifications Copyright (C) 2020 Bell Canada. |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [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" |
adheli.tavares | 42c18ef | 2023-08-17 22:09:58 +0100 | [diff] [blame^] | 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.pap</groupId> |
| 28 | <artifactId>policy-pap</artifactId> |
adheli.tavares | 42c18ef | 2023-08-17 22:09:58 +0100 | [diff] [blame^] | 29 | <version>3.0.1-SNAPSHOT</version> |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 30 | </parent> |
| 31 | |
Ram Krishna Verma | 9a96d62 | 2020-02-05 16:29:58 -0500 | [diff] [blame] | 32 | <artifactId>pap-packages</artifactId> |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 33 | <packaging>pom</packaging> |
| 34 | |
| 35 | <name>${project.artifactId}</name> |
| 36 | <description>The module for packaging the PAP component.</description> |
| 37 | |
Pamela Dragosh | e1bb12b | 2020-01-14 20:29:46 -0500 | [diff] [blame] | 38 | <properties> |
adheli.tavares | 42c18ef | 2023-08-17 22:09:58 +0100 | [diff] [blame^] | 39 | <!-- There is no code in this submodule, only holds interfaces. So skip sonar. --> |
Pamela Dragosh | e1bb12b | 2020-01-14 20:29:46 -0500 | [diff] [blame] | 40 | <sonar.skip>true</sonar.skip> |
| 41 | </properties> |
| 42 | |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 43 | <profiles> |
| 44 | <profile> |
| 45 | <id>default</id> |
| 46 | <activation> |
| 47 | <activeByDefault>true</activeByDefault> |
| 48 | </activation> |
jhh | 2852ea6 | 2019-11-19 10:04:57 -0600 | [diff] [blame] | 49 | <modules> |
| 50 | <module>policy-pap-tarball</module> |
| 51 | </modules> |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 52 | </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> |
danielhanrahan | f145be7 | 2022-05-19 10:53:50 +0100 | [diff] [blame] | 61 | <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> |
ramverma | d1a702c | 2019-02-11 15:20:09 +0000 | [diff] [blame] | 73 | </properties> |
| 74 | </profile> |
| 75 | </profiles> |
jhh | 2852ea6 | 2019-11-19 10:04:57 -0600 | [diff] [blame] | 76 | </project> |