blob: 5b857c13bfaed4d78ddbf7976bf2e53835fac6c6 [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>
27 <version>2.0.0-SNAPSHOT</version>
28 </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>
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>
Chenfei Gaoa50a7d82019-04-03 21:37:23 -040071
72 <dependency>
73 <groupId>io.swagger</groupId>
74 <artifactId>swagger-jersey2-jaxrs</artifactId>
75 </dependency>
liamfallonbde47d72019-03-25 08:09:14 +000076
liamfallonb694be12019-03-05 09:35:16 +000077 </dependencies>
78</project>