blob: a95f3955ce284b18db6665006ba245fea6e2a546 [file] [log] [blame]
liamfallonb694be12019-03-05 09:35:16 +00001<!--
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>
Jim Hahn52d23772019-08-06 09:52:31 -040027 <version>2.1.3-SNAPSHOT</version>
liamfallonb694be12019-03-05 09:35:16 +000028 </parent>
29
30 <artifactId>policy-models-tosca</artifactId>
31
32 <name>${project.artifactId}</name>
liamfallon4c28d2c2019-03-14 10:01:58 +000033 <description>The TOSCA models that are shared across different policy components</description>
liamfallonb694be12019-03-05 09:35:16 +000034
35 <dependencies>
36 <dependency>
37 <groupId>org.onap.policy.models</groupId>
38 <artifactId>policy-models-base</artifactId>
39 <version>${project.version}</version>
40 </dependency>
liamfallon4c28d2c2019-03-14 10:01:58 +000041
42 <dependency>
liamfallon9727c322019-03-19 16:29:56 +000043 <groupId>org.onap.policy.models</groupId>
liamfallonc61eebf2019-03-22 15:59:21 +000044 <artifactId>policy-models-dao</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47
48 <dependency>
49 <groupId>org.onap.policy.models</groupId>
liamfallon9727c322019-03-19 16:29:56 +000050 <artifactId>policy-models-examples</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53
54 <dependency>
liamfallon4c28d2c2019-03-14 10:01:58 +000055 <groupId>org.onap.policy.common</groupId>
56 <artifactId>gson</artifactId>
57 <version>${policy.common.version}</version>
58 </dependency>
liamfallonbde47d72019-03-25 08:09:14 +000059
60 <dependency>
Jim Hahn92d9b662019-04-11 21:58:12 -040061 <groupId>org.onap.policy.common</groupId>
62 <artifactId>common-parameters</artifactId>
63 <version>${policy.common.version}</version>
64 </dependency>
65
66 <dependency>
liamfallonbde47d72019-03-25 08:09:14 +000067 <groupId>com.h2database</groupId>
68 <artifactId>h2</artifactId>
69 <scope>test</scope>
70 </dependency>
liamfallonbde47d72019-03-25 08:09:14 +000071 <dependency>
Chenfei Gaoa50a7d82019-04-03 21:37:23 -040072 <groupId>io.swagger</groupId>
73 <artifactId>swagger-jersey2-jaxrs</artifactId>
Pamela Dragoshf42123c2019-04-19 11:52:40 -040074 <exclusions>
75 <exclusion>
76 <groupId>com.fasterxml.jackson.core</groupId>
77 <artifactId>jackson-databind</artifactId>
78 </exclusion>
79 </exclusions>
Chenfei Gaoa50a7d82019-04-03 21:37:23 -040080 </dependency>
liamfallonb694be12019-03-05 09:35:16 +000081 </dependencies>
82</project>