blob: c5fcdf0d3c9c2be1eed649525c8cbc480f1716a0 [file] [log] [blame]
ning.xi2d994542019-04-01 03:07:40 +00001<!--
2 ============LICENSE_START=======================================================
HOCKLAc5475f12020-01-10 12:16:00 -06003 Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
ning.xi2d994542019-04-01 03:07:40 +00004 Modifications Copyright (C) 2019 Nordix Foundation.
5 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 ============LICENSE_END=========================================================
18 -->
19
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">
21 <modelVersion>4.0.0</modelVersion>
22 <packaging>pom</packaging>
23
24 <parent>
25 <groupId>org.onap.policy.models</groupId>
26 <artifactId>policy-models-interactions</artifactId>
Ram Krishna Vermaee8ce522020-05-19 12:39:05 -040027 <version>2.2.7-SNAPSHOT</version>
ning.xi2d994542019-04-01 03:07:40 +000028 </parent>
29
30 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
31 <artifactId>model-actors</artifactId>
32
Pamela Dragosh3d14abe2020-01-16 11:55:29 -050033 <properties>
34 <jacoco.dataFile>${project.basedir}/../../../../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
35 </properties>
36
ning.xi2d994542019-04-01 03:07:40 +000037 <modules>
38 <module>actorServiceProvider</module>
Jim Hahn35867f22020-02-08 08:32:59 -050039 <module>actor.test</module>
Jim Hahn3b4884e2020-02-12 13:01:57 -050040 <module>actor.aai</module>
Jim Hahn2e2eae52020-02-19 17:24:11 -050041 <module>actor.guard</module>
ning.xi2d994542019-04-01 03:07:40 +000042 <module>actor.appc</module>
43 <module>actor.vfc</module>
44 <module>actor.sdnc</module>
45 <module>actor.appclcm</module>
46 <module>actor.sdnr</module>
47 <module>actor.so</module>
Rashmi Pujar9bd16312019-06-12 14:59:10 -040048 <module>actor.cds</module>
ning.xi2d994542019-04-01 03:07:40 +000049 </modules>
50 <dependencies>
51 <dependency>
52 <groupId>com.google.guava</groupId>
53 <artifactId>guava</artifactId>
54 </dependency>
55 <dependency>
ning.xi0b860c82019-04-04 02:55:50 +000056 <groupId>org.onap.policy.models.policy-models-interactions</groupId>
57 <artifactId>model-yaml</artifactId>
58 <version>${project.version}</version>
ning.xi2d994542019-04-01 03:07:40 +000059 </dependency>
60 </dependencies>
61</project>