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. |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 5 | ================================================================================ |
| 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.api</groupId> |
| 26 | <artifactId>policy-api</artifactId> |
Pamela Dragosh | 6059258 | 2021-02-24 07:16:07 -0500 | [diff] [blame^] | 27 | <version>2.4.1-SNAPSHOT</version> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 28 | </parent> |
| 29 | |
Ram Krishna Verma | 1d4ce8d | 2020-02-05 16:28:33 -0500 | [diff] [blame] | 30 | <artifactId>api-packages</artifactId> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 31 | <packaging>pom</packaging> |
Ram Krishna Verma | 1d4ce8d | 2020-02-05 16:28:33 -0500 | [diff] [blame] | 32 | <name>${project.artifactId}</name> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 33 | |
Pamela Dragosh | 20eef60 | 2020-01-14 14:57:58 -0500 | [diff] [blame] | 34 | <properties> |
| 35 | <!-- There is no code in this sub-module, only holds interfaces. So skip sonar. --> |
| 36 | <sonar.skip>true</sonar.skip> |
| 37 | </properties> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 38 | |
| 39 | <profiles> |
| 40 | <profile> |
| 41 | <id>default</id> |
| 42 | <activation> |
| 43 | <activeByDefault>true</activeByDefault> |
| 44 | </activation> |
jhh | d9f395e | 2019-11-19 10:00:43 -0600 | [diff] [blame] | 45 | <modules> |
| 46 | <module>policy-api-tarball</module> |
| 47 | </modules> |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 48 | </profile> |
| 49 | <profile> |
| 50 | <id>docker</id> |
| 51 | <modules> |
| 52 | <module>policy-api-tarball</module> |
| 53 | <module>policy-api-docker</module> |
| 54 | </modules> |
| 55 | <properties> |
| 56 | <docker.skip.push>false</docker.skip.push> |
| 57 | </properties> |
| 58 | </profile> |
| 59 | </profiles> |
| 60 | </project> |