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> |
Jim Hahn | 92d9b66 | 2019-04-11 21:58:12 -0400 | [diff] [blame] | 61 | <groupId>org.onap.policy.common</groupId> |
| 62 | <artifactId>common-parameters</artifactId> |
| 63 | <version>${policy.common.version}</version> |
| 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
liamfallon | bde47d7 | 2019-03-25 08:09:14 +0000 | [diff] [blame] | 67 | <groupId>com.h2database</groupId> |
| 68 | <artifactId>h2</artifactId> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
liamfallon | bde47d7 | 2019-03-25 08:09:14 +0000 | [diff] [blame] | 71 | <dependency> |
Chenfei Gao | a50a7d8 | 2019-04-03 21:37:23 -0400 | [diff] [blame] | 72 | <groupId>io.swagger</groupId> |
| 73 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
Pamela Dragosh | f42123c | 2019-04-19 11:52:40 -0400 | [diff] [blame^] | 74 | <exclusions> |
| 75 | <exclusion> |
| 76 | <groupId>com.fasterxml.jackson.core</groupId> |
| 77 | <artifactId>jackson-databind</artifactId> |
| 78 | </exclusion> |
| 79 | </exclusions> |
Chenfei Gao | a50a7d8 | 2019-04-03 21:37:23 -0400 | [diff] [blame] | 80 | </dependency> |
liamfallon | b694be1 | 2019-03-05 09:35:16 +0000 | [diff] [blame] | 81 | </dependencies> |
| 82 | </project> |