blob: 6bef02f4cb1cedc292cfa1b20d02c6af010a6a65 [file] [log] [blame]
a.sreekumarf46af332020-03-20 18:30:43 +00001<?xml version="1.0" encoding="UTF-8"?>
ramverma3d025432018-07-19 18:45:16 +01002<!--
3 ============LICENSE_START=======================================================
4 Copyright (C) 2018 Ericsson. All rights reserved.
a.sreekumarf46af332020-03-20 18:30:43 +00005 Modifications Copyright (C) 2020 Nordix Foundation.
ramverma3d025432018-07-19 18:45:16 +01006 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18
19 SPDX-License-Identifier: Apache-2.0
20 ============LICENSE_END=========================================================
a.sreekumarf46af332020-03-20 18:30:43 +000021--><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">
ramverma3d025432018-07-19 18:45:16 +010022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.onap.policy.apex-pdp</groupId>
25 <artifactId>apex-pdp</artifactId>
jrh3d7d9df62019-09-12 10:07:06 -040026 <version>2.3.0-SNAPSHOT</version>
ramverma3d025432018-07-19 18:45:16 +010027 </parent>
28
29 <groupId>org.onap.policy.apex-pdp.examples</groupId>
30 <artifactId>examples</artifactId>
31
32 <packaging>pom</packaging>
33 <name>${project.artifactId}</name>
34 <description>Specific source code and other artifacts for Apex example applications.</description>
35
ramverma3d025432018-07-19 18:45:16 +010036 <modules>
ramvermaf8959f52018-07-25 17:26:52 +010037 <module>examples-myfirstpolicy</module>
38 <module>examples-aadm</module>
39 <module>examples-adaptive</module>
40 <module>examples-pcvs</module>
ramvermad524ced2018-07-24 17:36:53 +010041 <module>examples-decisionmaker</module>
42 <module>examples-periodic</module>
43 <module>examples-onap-vcpe</module>
s003703465262c352019-04-11 00:14:39 +053044 <module>examples-onap-bbs</module>
ramverma9e318f22018-07-30 19:13:47 +010045 <module>examples-servlet</module>
a.sreekumarf46af332020-03-20 18:30:43 +000046 <module>examples-grpc</module>
47 </modules>
Dinh Danh Le6a2abc82018-08-23 00:41:47 +010048
liamfallon3cb682f2019-04-16 11:20:08 +000049 <dependencies>
50 <dependency>
51 <groupId>com.h2database</groupId>
52 <artifactId>h2</artifactId>
53 <scope>test</scope>
54 </dependency>
55 </dependencies>
a.sreekumarf46af332020-03-20 18:30:43 +000056
Dinh Danh Le6a2abc82018-08-23 00:41:47 +010057 <profiles>
58 <profile>
59 <id>apexSite</id>
60 <activation>
61 <property>
62 <name>apexSite</name>
63 </property>
64 </activation>
65 <distributionManagement>
66 <site>
67 <id>${project.artifactId}-site</id>
68 <url>${apex.adsite.prefix}/modules/${project.artifactId}/</url>
69 </site>
70 </distributionManagement>
71 </profile>
72 </profiles>
ramverma3d025432018-07-19 18:45:16 +010073</project>