liamfallon | 4c28d2c | 2019-03-14 10:01:58 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
HOCKLA | c5475f1 | 2020-01-10 12:16:00 -0600 | [diff] [blame] | 3 | Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. |
liamfallon | 4c28d2c | 2019-03-14 10:01:58 +0000 | [diff] [blame] | 4 | ================================================================================ |
| 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 | --> |
liamfallon | 8fc237c | 2019-03-20 16:08:21 +0000 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
liamfallon | 4c28d2c | 2019-03-14 10:01:58 +0000 | [diff] [blame] | 21 | 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 Hahn | 812537c | 2021-03-09 11:56:51 -0500 | [diff] [blame^] | 26 | <version>2.4.2-SNAPSHOT</version> |
liamfallon | 4c28d2c | 2019-03-14 10:01:58 +0000 | [diff] [blame] | 27 | </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> |
liamfallon | 9727c32 | 2019-03-19 16:29:56 +0000 | [diff] [blame] | 36 | <groupId>org.onap.policy.common</groupId> |
| 37 | <artifactId>common-parameters</artifactId> |
| 38 | <version>${policy.common.version}</version> |
| 39 | </dependency> |
| 40 | |
| 41 | <dependency> |
liamfallon | 4c28d2c | 2019-03-14 10:01:58 +0000 | [diff] [blame] | 42 | <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> |
liamfallon | 8fc237c | 2019-03-20 16:08:21 +0000 | [diff] [blame] | 58 | |
| 59 | <dependency> |
liamfallon | c61eebf | 2019-03-22 15:59:21 +0000 | [diff] [blame] | 60 | <groupId>org.onap.policy.models</groupId> |
liamfallon | cc5b96b | 2019-03-29 10:31:22 +0000 | [diff] [blame] | 61 | <artifactId>policy-models-pdp</artifactId> |
liamfallon | c61eebf | 2019-03-22 15:59:21 +0000 | [diff] [blame] | 62 | <version>${project.version}</version> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
liamfallon | 8fc237c | 2019-03-20 16:08:21 +0000 | [diff] [blame] | 66 | <groupId>com.h2database</groupId> |
| 67 | <artifactId>h2</artifactId> |
| 68 | <scope>test</scope> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
liamfallon | c61eebf | 2019-03-22 15:59:21 +0000 | [diff] [blame] | 72 | <groupId>org.mockito</groupId> |
| 73 | <artifactId>mockito-all</artifactId> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
liamfallon | 6ccec52 | 2019-03-27 22:27:14 +0000 | [diff] [blame] | 76 | |
| 77 | <dependency> |
| 78 | <groupId>org.assertj</groupId> |
| 79 | <artifactId>assertj-core</artifactId> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | |
liamfallon | 275a3c5 | 2020-05-02 01:35:07 +0100 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>org.awaitility</groupId> |
| 85 | <artifactId>awaitility</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
liamfallon | 4c28d2c | 2019-03-14 10:01:58 +0000 | [diff] [blame] | 88 | </dependencies> |
| 89 | </project> |