blob: b47d7190a22c45cdb4fa38b444477340ec86d769 [file] [log] [blame]
liamfallon4c28d2c2019-03-14 10:01:58 +00001<!--
2 ============LICENSE_START=======================================================
HOCKLAc5475f12020-01-10 12:16:00 -06003 Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
liamfallon4c28d2c2019-03-14 10:01:58 +00004 ================================================================================
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 SPDX-License-Identifier: Apache-2.0
18 ============LICENSE_END=========================================================
19-->
liamfallon8fc237c2019-03-20 16:08:21 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
liamfallon4c28d2c2019-03-14 10:01:58 +000021 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.onap.policy.models</groupId>
25 <artifactId>policy-models</artifactId>
Jim Hahn812537c2021-03-09 11:56:51 -050026 <version>2.4.2-SNAPSHOT</version>
liamfallon4c28d2c2019-03-14 10:01:58 +000027 </parent>
28
29 <artifactId>policy-models-provider</artifactId>
30
31 <name>${project.artifactId}</name>
32 <description>The provider interface that allows components to manipualte models in the database</description>
33
34 <dependencies>
35 <dependency>
liamfallon9727c322019-03-19 16:29:56 +000036 <groupId>org.onap.policy.common</groupId>
37 <artifactId>common-parameters</artifactId>
38 <version>${policy.common.version}</version>
39 </dependency>
40
41 <dependency>
liamfallon4c28d2c2019-03-14 10:01:58 +000042 <groupId>org.onap.policy.models</groupId>
43 <artifactId>policy-models-base</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46
47 <dependency>
48 <groupId>org.onap.policy.models</groupId>
49 <artifactId>policy-models-dao</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onap.policy.models</groupId>
55 <artifactId>policy-models-tosca</artifactId>
56 <version>${project.version}</version>
57 </dependency>
liamfallon8fc237c2019-03-20 16:08:21 +000058
59 <dependency>
liamfallonc61eebf2019-03-22 15:59:21 +000060 <groupId>org.onap.policy.models</groupId>
liamfalloncc5b96b2019-03-29 10:31:22 +000061 <artifactId>policy-models-pdp</artifactId>
liamfallonc61eebf2019-03-22 15:59:21 +000062 <version>${project.version}</version>
63 </dependency>
64
65 <dependency>
liamfallon8fc237c2019-03-20 16:08:21 +000066 <groupId>com.h2database</groupId>
67 <artifactId>h2</artifactId>
68 <scope>test</scope>
69 </dependency>
70
71 <dependency>
liamfallonc61eebf2019-03-22 15:59:21 +000072 <groupId>org.mockito</groupId>
73 <artifactId>mockito-all</artifactId>
74 <scope>test</scope>
75 </dependency>
liamfallon6ccec522019-03-27 22:27:14 +000076
77 <dependency>
78 <groupId>org.assertj</groupId>
79 <artifactId>assertj-core</artifactId>
80 <scope>test</scope>
81 </dependency>
82
liamfallon275a3c52020-05-02 01:35:07 +010083 <dependency>
84 <groupId>org.awaitility</groupId>
85 <artifactId>awaitility</artifactId>
86 <scope>test</scope>
87 </dependency>
liamfallon4c28d2c2019-03-14 10:01:58 +000088 </dependencies>
89</project>