blob: 86e34fa8c3f6319090e6d1007f32a4dec1e86ffa [file] [log] [blame]
Jim Hahn35867f22020-02-08 08:32:59 -05001<?xml version="1.0"?>
2<!--
3 ============LICENSE_START=======================================================
4 Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
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"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
27 <artifactId>model-actors</artifactId>
28 <version>2.2.1-SNAPSHOT</version>
29 </parent>
30
31 <artifactId>actor.test</artifactId>
32 <description>Utilities for testing actors</description>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
Jim Hahn7f69c5c2020-02-20 19:08:55 -050037 <artifactId>aai</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
Jim Hahn35867f22020-02-08 08:32:59 -050042 <artifactId>events</artifactId>
43 <version>${project.version}</version>
Jim Hahn35867f22020-02-08 08:32:59 -050044 </dependency>
45 <dependency>
46 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
47 <artifactId>actorServiceProvider</artifactId>
48 <version>${project.version}</version>
Jim Hahn35867f22020-02-08 08:32:59 -050049 </dependency>
50 <dependency>
51 <groupId>org.onap.policy.common</groupId>
52 <artifactId>policy-endpoints</artifactId>
53 <version>${policy.common.version}</version>
54 <scope>provided</scope>
55 </dependency>
56 <dependency>
57 <groupId>junit</groupId>
58 <artifactId>junit</artifactId>
Jim Hahn4ccc2652020-02-18 15:28:39 -050059 <scope>provided</scope>
Jim Hahn35867f22020-02-08 08:32:59 -050060 </dependency>
61 <dependency>
Jim Hahn28ca4d12020-02-14 14:22:48 -050062 <groupId>org.onap.policy.common</groupId>
63 <artifactId>utils-test</artifactId>
64 <version>${policy.common.version}</version>
65 </dependency>
66 <dependency>
Jim Hahn35867f22020-02-08 08:32:59 -050067 <groupId>org.powermock</groupId>
68 <artifactId>powermock-api-mockito2</artifactId>
69 <scope>compile</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.mockito</groupId>
73 <artifactId>mockito-core</artifactId>
74 <scope>compile</scope>
75 </dependency>
76 </dependencies>
Jim Hahn7f69c5c2020-02-20 19:08:55 -050077
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-jar-plugin</artifactId>
83 <configuration>
84 <excludes>
85 <exclude>src/test/**</exclude>
86 </excludes>
87 </configuration>
88 </plugin>
89 </plugins>
90 </build>
Jim Hahn35867f22020-02-08 08:32:59 -050091</project>