blob: 925e861af34fa1755ecc8d0d83c6b23de93287e3 [file] [log] [blame]
ning.xi2d994542019-04-01 03:07:40 +00001<?xml version="1.0"?>
2<!--
3 ============LICENSE_START=======================================================
HOCKLAc5475f12020-01-10 12:16:00 -06004 Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
ning.xi2d994542019-04-01 03:07:40 +00005 Modifications Copyright (C) 2019 Nordix Foundation.
6 ================================================================================
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 ============LICENSE_END=========================================================
19 -->
20
Jim Hahn28ca4d12020-02-14 14:22:48 -050021<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
ning.xi2d994542019-04-01 03:07:40 +000025
Jim Hahn28ca4d12020-02-14 14:22:48 -050026 <parent>
27 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
28 <artifactId>model-actors</artifactId>
Jim Hahnee142f52020-10-26 16:53:04 -040029 <version>2.4.0-SNAPSHOT</version>
Jim Hahn28ca4d12020-02-14 14:22:48 -050030 </parent>
ning.xi2d994542019-04-01 03:07:40 +000031
Jim Hahn28ca4d12020-02-14 14:22:48 -050032 <artifactId>actor.appc</artifactId>
ning.xi2d994542019-04-01 03:07:40 +000033
Jim Hahn28ca4d12020-02-14 14:22:48 -050034 <dependencies>
35 <dependency>
36 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
37 <artifactId>actorServiceProvider</artifactId>
38 <version>${project.version}</version>
39 <scope>provided</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
43 <artifactId>appc</artifactId>
44 <version>${project.version}</version>
45 <scope>provided</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
49 <artifactId>aai</artifactId>
50 <version>${project.version}</version>
51 <scope>provided</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
55 <artifactId>events</artifactId>
56 <version>${project.version}</version>
57 <scope>provided</scope>
58 </dependency>
59 <dependency>
Jim Hahn28ca4d12020-02-14 14:22:48 -050060 <groupId>com.google.code.gson</groupId>
61 <artifactId>gson</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>junit</groupId>
66 <artifactId>junit</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.onap.policy.models.policy-models-interactions</groupId>
71 <artifactId>simulators</artifactId>
72 <version>${project.version}</version>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.onap.policy.common</groupId>
77 <artifactId>policy-endpoints</artifactId>
78 <version>${policy.common.version}</version>
79 <scope>provided</scope>
80 </dependency>
Jim Hahne44f1a12020-02-17 13:57:56 -050081 <dependency>
82 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
83 <artifactId>actor.test</artifactId>
84 <version>${project.version}</version>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.powermock</groupId>
89 <artifactId>powermock-api-mockito2</artifactId>
90 <scope>test</scope>
91 </dependency>
Jim Hahn28ca4d12020-02-14 14:22:48 -050092 </dependencies>
ning.xi2d994542019-04-01 03:07:40 +000093</project>