ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
| 4 | ================================================================================ |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | |
| 17 | SPDX-License-Identifier: Apache-2.0 |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
liamfallon | 3aa7cbe | 2018-10-31 16:35:54 +0000 | [diff] [blame] | 20 | <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"> |
ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.onap.policy.apex-pdp</groupId> |
| 24 | <artifactId>apex-pdp</artifactId> |
Ram Krishna Verma | 3b1c78a | 2020-07-10 17:25:54 -0400 | [diff] [blame^] | 25 | <version>2.4.1-SNAPSHOT</version> |
ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
| 29 | <artifactId>core</artifactId> |
| 30 | <packaging>pom</packaging> |
| 31 | |
| 32 | <name>${project.artifactId}</name> |
| 33 | <description>The main core of Apex, deployment independent.</description> |
| 34 | |
| 35 | <modules> |
| 36 | <module>core-infrastructure</module> |
| 37 | <module>core-protocols</module> |
| 38 | <module>core-engine</module> |
| 39 | <module>core-deployment</module> |
| 40 | </modules> |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 41 | |
| 42 | <profiles> |
| 43 | <profile> |
| 44 | <id>apexSite</id> |
| 45 | <activation> |
| 46 | <property> |
| 47 | <name>apexSite</name> |
| 48 | </property> |
| 49 | </activation> |
| 50 | <distributionManagement> |
| 51 | <site> |
| 52 | <id>${project.artifactId}-site</id> |
| 53 | <url>${apex.adsite.prefix}/modules/${project.artifactId}/</url> |
| 54 | </site> |
| 55 | </distributionManagement> |
| 56 | </profile> |
| 57 | </profiles> |
a.sreekumar | f1f9a30 | 2020-03-25 23:01:06 +0000 | [diff] [blame] | 58 | </project> |