ramverma | 3d02543 | 2018-07-19 18:45:16 +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 | 3d02543 | 2018-07-19 18:45:16 +0100 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.onap.policy.apex-pdp</groupId> |
| 24 | <artifactId>apex-pdp</artifactId> |
liamfallon | 3aa7cbe | 2018-10-31 16:35:54 +0000 | [diff] [blame] | 25 | <version>2.1.0-SNAPSHOT</version> |
ramverma | 3d02543 | 2018-07-19 18:45:16 +0100 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <groupId>org.onap.policy.apex-pdp.examples</groupId> |
| 29 | <artifactId>examples</artifactId> |
| 30 | |
| 31 | <packaging>pom</packaging> |
| 32 | <name>${project.artifactId}</name> |
| 33 | <description>Specific source code and other artifacts for Apex example applications.</description> |
| 34 | |
| 35 | |
| 36 | <modules> |
ramverma | f8959f5 | 2018-07-25 17:26:52 +0100 | [diff] [blame] | 37 | <module>examples-myfirstpolicy</module> |
| 38 | <module>examples-aadm</module> |
| 39 | <module>examples-adaptive</module> |
| 40 | <module>examples-pcvs</module> |
ramverma | d524ced | 2018-07-24 17:36:53 +0100 | [diff] [blame] | 41 | <module>examples-decisionmaker</module> |
| 42 | <module>examples-periodic</module> |
| 43 | <module>examples-onap-vcpe</module> |
s00370346 | 5262c35 | 2019-04-11 00:14:39 +0530 | [diff] [blame^] | 44 | <module>examples-onap-bbs</module> |
ramverma | 9e318f2 | 2018-07-30 19:13:47 +0100 | [diff] [blame] | 45 | <module>examples-servlet</module> |
ramverma | 3d02543 | 2018-07-19 18:45:16 +0100 | [diff] [blame] | 46 | </modules> |
Dinh Danh Le | 6a2abc8 | 2018-08-23 00:41:47 +0100 | [diff] [blame] | 47 | |
| 48 | <profiles> |
| 49 | <profile> |
| 50 | <id>apexSite</id> |
| 51 | <activation> |
| 52 | <property> |
| 53 | <name>apexSite</name> |
| 54 | </property> |
| 55 | </activation> |
| 56 | <distributionManagement> |
| 57 | <site> |
| 58 | <id>${project.artifactId}-site</id> |
| 59 | <url>${apex.adsite.prefix}/modules/${project.artifactId}/</url> |
| 60 | </site> |
| 61 | </distributionManagement> |
| 62 | </profile> |
| 63 | </profiles> |
ramverma | 3d02543 | 2018-07-19 18:45:16 +0100 | [diff] [blame] | 64 | </project> |