liamfallon | b694be1 | 2019-03-05 09:35:16 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. |
| 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 | --> |
| 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 | <parent> |
| 25 | <groupId>org.onap.policy.models</groupId> |
| 26 | <artifactId>policy-models</artifactId> |
| 27 | <version>2.0.0-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>policy-models-tosca</artifactId> |
| 31 | |
| 32 | <name>${project.artifactId}</name> |
liamfallon | 4c28d2c | 2019-03-14 10:01:58 +0000 | [diff] [blame] | 33 | <description>The TOSCA models that are shared across different policy components</description> |
liamfallon | b694be1 | 2019-03-05 09:35:16 +0000 | [diff] [blame] | 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.policy.models</groupId> |
| 38 | <artifactId>policy-models-base</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
liamfallon | 4c28d2c | 2019-03-14 10:01:58 +0000 | [diff] [blame] | 41 | |
| 42 | <dependency> |
liamfallon | 9727c32 | 2019-03-19 16:29:56 +0000 | [diff] [blame] | 43 | <groupId>org.onap.policy.models</groupId> |
liamfallon | c61eebf | 2019-03-22 15:59:21 +0000 | [diff] [blame] | 44 | <artifactId>policy-models-dao</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | |
| 48 | <dependency> |
| 49 | <groupId>org.onap.policy.models</groupId> |
liamfallon | 9727c32 | 2019-03-19 16:29:56 +0000 | [diff] [blame] | 50 | <artifactId>policy-models-examples</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
liamfallon | 4c28d2c | 2019-03-14 10:01:58 +0000 | [diff] [blame] | 55 | <groupId>org.onap.policy.common</groupId> |
| 56 | <artifactId>gson</artifactId> |
| 57 | <version>${policy.common.version}</version> |
| 58 | </dependency> |
liamfallon | bde47d7 | 2019-03-25 08:09:14 +0000 | [diff] [blame^] | 59 | |
| 60 | <dependency> |
| 61 | <groupId>com.h2database</groupId> |
| 62 | <artifactId>h2</artifactId> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
| 67 | <groupId>org.mariadb.jdbc</groupId> |
| 68 | <artifactId>mariadb-java-client</artifactId> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | |
liamfallon | b694be1 | 2019-03-05 09:35:16 +0000 | [diff] [blame] | 72 | </dependencies> |
| 73 | </project> |