eikrwaq | a94302f | 2018-05-23 14:08:29 +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> |
waqas.ikram | f524b88 | 2018-05-24 15:31:21 +0100 | [diff] [blame] | 24 | <groupId>org.onap.policy.apex-pdp</groupId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 25 | <artifactId>apex-pdp</artifactId> |
| 26 | <version>2.0.0-SNAPSHOT</version> |
| 27 | </parent> |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 28 | |
waqas.ikram | f524b88 | 2018-05-24 15:31:21 +0100 | [diff] [blame] | 29 | <groupId>org.onap.policy.apex-pdp.model</groupId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 30 | <artifactId>model</artifactId> |
| 31 | <packaging>pom</packaging> |
| 32 | |
| 33 | <name>${project.artifactId}</name> |
| 34 | <description>The model for Apex, it comtains definitions of all Apex concepts and also has handling for Apex models.</description> |
| 35 | |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.apache.derby</groupId> |
| 39 | <artifactId>derby</artifactId> |
| 40 | <version>${version.derby}</version> |
| 41 | <scope>test</scope> |
| 42 | </dependency> |
| 43 | </dependencies> |
| 44 | |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 45 | <modules> |
waqas.ikram | 8e424a8 | 2018-05-24 14:39:38 +0100 | [diff] [blame] | 46 | <module>utilities</module> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 47 | <module>basic-model</module> |
waqas.ikram | 5abd306 | 2018-05-24 17:00:47 +0100 | [diff] [blame] | 48 | <module>context-model</module> |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 49 | <module>event-model</module> |
waqas.ikram | 55d93a1 | 2018-05-28 10:58:07 +0100 | [diff] [blame] | 50 | <module>policy-model</module> |
| 51 | <module>engine-model</module> |
| 52 | <module>model-api</module> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 53 | </modules> |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 54 | |
| 55 | <profiles> |
| 56 | <profile> |
| 57 | <id>apexSite</id> |
| 58 | <activation> |
| 59 | <property> |
| 60 | <name>apexSite</name> |
| 61 | </property> |
| 62 | </activation> |
| 63 | <distributionManagement> |
| 64 | <site> |
| 65 | <id>${project.artifactId}-site</id> |
| 66 | <url>${apex.adsite.prefix}/modules/${project.artifactId}/</url> |
| 67 | </site> |
| 68 | </distributionManagement> |
| 69 | </profile> |
| 70 | </profiles> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 71 | </project> |