waqas.ikram | 55d93a1 | 2018-05-28 10:58:07 +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 | --> |
| 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.apex-pdp.model</groupId> |
| 25 | <artifactId>model</artifactId> |
ramverma | 79e5ede | 2018-10-24 20:14:02 +0100 | [diff] [blame^] | 26 | <version>2.0.1-SNAPSHOT</version> |
waqas.ikram | 55d93a1 | 2018-05-28 10:58:07 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>model-api</artifactId> |
| 30 | <name>${project.artifactId}</name> |
| 31 | <description>APIs for editing Apex models</description> |
| 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
liamfallon | efdaa0d | 2018-08-03 16:12:01 +0100 | [diff] [blame] | 35 | <groupId>org.onap.policy.common</groupId> |
| 36 | <artifactId>utils</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
waqas.ikram | 55d93a1 | 2018-05-28 10:58:07 +0100 | [diff] [blame] | 39 | <groupId>${project.groupId}</groupId> |
| 40 | <artifactId>policy-model</artifactId> |
| 41 | <version>${project.version}</version> |
| 42 | </dependency> |
| 43 | </dependencies> |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 44 | |
| 45 | <profiles> |
| 46 | <profile> |
| 47 | <id>apexSite</id> |
| 48 | <activation> |
| 49 | <property> |
| 50 | <name>apexSite</name> |
| 51 | </property> |
| 52 | </activation> |
| 53 | <distributionManagement> |
| 54 | <site> |
| 55 | <id>${project.artifactId}-site</id> |
| 56 | <url>${apex.adsite.prefix}/modules/${project.parent.artifactId}/${project.artifactId}/</url> |
| 57 | </site> |
| 58 | </distributionManagement> |
| 59 | </profile> |
| 60 | </profiles> |
waqas.ikram | 55d93a1 | 2018-05-28 10:58:07 +0100 | [diff] [blame] | 61 | </project> |