blob: a751a0122b53bd0cfe40cdb9775468400591d7a7 [file] [log] [blame]
ning.xi2d994542019-04-01 03:07:40 +00001<?xml version="1.0"?>
2<!--
3 ============LICENSE_START=======================================================
4 Copyright (C) 2018 Huawei Intellectual Property. All rights reserved.
HOCKLAc5475f12020-01-10 12:16:00 -06005 Modifications Copyright (C) 2019-2020 Nordix Foundation.
6 Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
ning.xi2d994542019-04-01 03:07:40 +00007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21
Jim Hahn35867f22020-02-08 08:32:59 -050022<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
ning.xi2d994542019-04-01 03:07:40 +000026
Jim Hahn35867f22020-02-08 08:32:59 -050027 <parent>
28 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
29 <artifactId>model-actors</artifactId>
liamfallon125b0742020-03-24 09:50:17 +000030 <version>2.2.2-SNAPSHOT</version>
Jim Hahn35867f22020-02-08 08:32:59 -050031 </parent>
ning.xi2d994542019-04-01 03:07:40 +000032
Jim Hahn35867f22020-02-08 08:32:59 -050033 <artifactId>actor.sdnc</artifactId>
ning.xi2d994542019-04-01 03:07:40 +000034
Jim Hahn35867f22020-02-08 08:32:59 -050035 <dependencies>
36 <dependency>
37 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
38 <artifactId>actorServiceProvider</artifactId>
39 <version>${project.version}</version>
40 <scope>provided</scope>
41 </dependency>
42 <dependency>
43 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
44 <artifactId>sdnc</artifactId>
45 <version>${project.version}</version>
46 <scope>provided</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
50 <artifactId>events</artifactId>
51 <version>${project.version}</version>
52 <scope>provided</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
56 <artifactId>aai</artifactId>
57 <version>${project.version}</version>
58 <scope>provided</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.onap.policy.common</groupId>
62 <artifactId>policy-endpoints</artifactId>
63 <version>${policy.common.version}</version>
64 <scope>provided</scope>
65 </dependency>
66 <dependency>
67 <groupId>junit</groupId>
68 <artifactId>junit</artifactId>
69 <scope>test</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
73 <artifactId>actor.test</artifactId>
74 <version>${project.version}</version>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.onap.policy.models.policy-models-interactions</groupId>
79 <artifactId>simulators</artifactId>
80 <version>${project.version}</version>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.powermock</groupId>
85 <artifactId>powermock-api-mockito2</artifactId>
86 <scope>test</scope>
87 </dependency>
88 </dependencies>
ning.xi2d994542019-04-01 03:07:40 +000089</project>