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 | |
ramverma | 3d02543 | 2018-07-19 18:45:16 +0100 | [diff] [blame] | 35 | <modules> |
ramverma | f8959f5 | 2018-07-25 17:26:52 +0100 | [diff] [blame] | 36 | <module>examples-myfirstpolicy</module> |
| 37 | <module>examples-aadm</module> |
| 38 | <module>examples-adaptive</module> |
| 39 | <module>examples-pcvs</module> |
ramverma | d524ced | 2018-07-24 17:36:53 +0100 | [diff] [blame] | 40 | <module>examples-decisionmaker</module> |
| 41 | <module>examples-periodic</module> |
| 42 | <module>examples-onap-vcpe</module> |
ramverma | 9e318f2 | 2018-07-30 19:13:47 +0100 | [diff] [blame] | 43 | <module>examples-servlet</module> |
ramverma | 3d02543 | 2018-07-19 18:45:16 +0100 | [diff] [blame] | 44 | </modules> |
Dinh Danh Le | 6a2abc8 | 2018-08-23 00:41:47 +0100 | [diff] [blame] | 45 | |
liamfallon | 3cb682f | 2019-04-16 11:20:08 +0000 | [diff] [blame^] | 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>com.h2database</groupId> |
| 49 | <artifactId>h2</artifactId> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | </dependencies> |
| 53 | |
Dinh Danh Le | 6a2abc8 | 2018-08-23 00:41:47 +0100 | [diff] [blame] | 54 | <profiles> |
| 55 | <profile> |
| 56 | <id>apexSite</id> |
| 57 | <activation> |
| 58 | <property> |
| 59 | <name>apexSite</name> |
| 60 | </property> |
| 61 | </activation> |
| 62 | <distributionManagement> |
| 63 | <site> |
| 64 | <id>${project.artifactId}-site</id> |
| 65 | <url>${apex.adsite.prefix}/modules/${project.artifactId}/</url> |
| 66 | </site> |
| 67 | </distributionManagement> |
| 68 | </profile> |
| 69 | </profiles> |
ramverma | 3d02543 | 2018-07-19 18:45:16 +0100 | [diff] [blame] | 70 | </project> |