blob: 3ab31ff602e7922b95d66c737017bd043569841f [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 Hahn89ce8bc2020-01-23 18:56:40 -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 Hahn89ce8bc2020-01-23 18:56:40 -050026 <parent>
27 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
28 <artifactId>model-actors</artifactId>
liamfallonec82c442022-04-12 18:41:35 +010029 <version>2.6.3-SNAPSHOT</version>
Jim Hahn89ce8bc2020-01-23 18:56:40 -050030 </parent>
ning.xi2d994542019-04-01 03:07:40 +000031
Jim Hahn89ce8bc2020-01-23 18:56:40 -050032 <artifactId>actorServiceProvider</artifactId>
ning.xi2d994542019-04-01 03:07:40 +000033
Jim Hahn89ce8bc2020-01-23 18:56:40 -050034 <dependencies>
35 <dependency>
36 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
37 <artifactId>aai</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>events</artifactId>
44 <version>${project.version}</version>
45 <scope>provided</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.onap.policy.common</groupId>
49 <artifactId>policy-endpoints</artifactId>
50 <version>${policy.common.version}</version>
51 <scope>provided</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.powermock</groupId>
55 <artifactId>powermock-api-mockito2</artifactId>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>junit</groupId>
60 <artifactId>junit</artifactId>
61 <scope>test</scope>
62 </dependency>
63 </dependencies>
ning.xi2d994542019-04-01 03:07:40 +000064</project>