Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Pamela Dragosh | 6059258 | 2021-02-24 07:16:07 -0500 | [diff] [blame] | 3 | Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved. |
Ram Krishna Verma | 1d4ce8d | 2020-02-05 16:28:33 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 Bell Canada. |
danielhanrahan | 3c97dd4 | 2022-05-17 15:37:02 +0100 | [diff] [blame] | 5 | Modifications Copyright (C) 2022 Nordix Foundation. |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [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" 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> |
| 27 | <artifactId>policy-api</artifactId> |
liamfallon | be1caa4 | 2022-05-03 17:21:48 +0100 | [diff] [blame] | 28 | <version>2.7.0-SNAPSHOT</version> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 29 | </parent> |
| 30 | |
Ram Krishna Verma | 1d4ce8d | 2020-02-05 16:28:33 -0500 | [diff] [blame] | 31 | <artifactId>api-packages</artifactId> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 32 | <packaging>pom</packaging> |
Ram Krishna Verma | 1d4ce8d | 2020-02-05 16:28:33 -0500 | [diff] [blame] | 33 | <name>${project.artifactId}</name> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 34 | |
Pamela Dragosh | 20eef60 | 2020-01-14 14:57:58 -0500 | [diff] [blame] | 35 | <properties> |
| 36 | <!-- There is no code in this sub-module, only holds interfaces. So skip sonar. --> |
| 37 | <sonar.skip>true</sonar.skip> |
| 38 | </properties> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 39 | |
| 40 | <profiles> |
| 41 | <profile> |
| 42 | <id>default</id> |
| 43 | <activation> |
| 44 | <activeByDefault>true</activeByDefault> |
| 45 | </activation> |
jhh | d9f395e | 2019-11-19 10:00:43 -0600 | [diff] [blame] | 46 | <modules> |
| 47 | <module>policy-api-tarball</module> |
| 48 | </modules> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 49 | </profile> |
| 50 | <profile> |
| 51 | <id>docker</id> |
| 52 | <modules> |
| 53 | <module>policy-api-tarball</module> |
| 54 | <module>policy-api-docker</module> |
| 55 | </modules> |
| 56 | <properties> |
| 57 | <docker.skip.push>false</docker.skip.push> |
danielhanrahan | 3c97dd4 | 2022-05-17 15:37:02 +0100 | [diff] [blame] | 58 | <dockerFile>Dockerfile</dockerFile> |
| 59 | </properties> |
| 60 | </profile> |
| 61 | <profile> |
| 62 | <id>dockersuse</id> |
| 63 | <modules> |
| 64 | <module>policy-api-tarball</module> |
| 65 | <module>policy-api-docker</module> |
| 66 | </modules> |
| 67 | <properties> |
| 68 | <docker.skip.push>false</docker.skip.push> |
| 69 | <dockerFile>suse.Dockerfile</dockerFile> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 70 | </properties> |
| 71 | </profile> |
| 72 | </profiles> |
| 73 | </project> |