blob: 099079f2a192b53f0ffe785abc9891757946f6ab [file] [log] [blame]
vempo2da911f2018-11-01 20:27:39 +02001<!--
2 ~ Copyright © 2016-2018 European Support Limited
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
Michael Landof5f13c42017-02-19 12:35:04 +020017<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
Michael Lando61f98d42017-06-09 04:54:54 +030021 <groupId>org.openecomp.sdc.core</groupId>
AviZi280f8012017-06-09 02:39:56 +030022 <name>openecomp-heat-lib</name>
23 <artifactId>openecomp-heat-lib</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020024
25 <parent>
26 <artifactId>openecomp-sdc-lib</artifactId>
27 <groupId>org.openecomp.sdc</groupId>
Michael Lando1276ee12018-11-01 16:25:31 +020028 <version>1.3.2-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020029 </parent>
30
Michael Landof5f13c42017-02-19 12:35:04 +020031 <dependencies>
32 <dependency>
siddharth09052b7766d2018-09-20 10:00:37 +030033 <groupId>org.projectlombok</groupId>
34 <artifactId>lombok</artifactId>
vempo2da911f2018-11-01 20:27:39 +020035 <scope>provided</scope>
siddharth09052b7766d2018-09-20 10:00:37 +030036 </dependency>
37 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053038 <groupId>org.onap.sdc.common</groupId>
39 <artifactId>onap-configuration-management-core</artifactId>
vempo494e4422018-07-18 17:10:01 +030040 <version>${project.version}</version>
shrek2000c8a540b2017-09-11 15:45:37 +030041 <scope>runtime</scope>
shrek2000c8a540b2017-09-11 15:45:37 +030042 </dependency>
43 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053044 <groupId>org.onap.sdc.common</groupId>
45 <artifactId>onap-tosca-datatype</artifactId>
vempo494e4422018-07-18 17:10:01 +030046 <version>${project.version}</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030047 </dependency>
48 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030049 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020050 <artifactId>openecomp-utilities-lib</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.openecomp.sdc</groupId>
55 <artifactId>openecomp-sdc-datatypes-lib</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030059 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020060 <artifactId>openecomp-common-lib</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>ch.qos.logback</groupId>
65 <artifactId>logback-classic</artifactId>
AviZi280f8012017-06-09 02:39:56 +030066 <version>${logback.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020067 </dependency>
68 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020071 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.openecomp.sdc</groupId>
75 <artifactId>openecomp-sdc-validation-api</artifactId>
76 <version>${project.version}</version>
77 </dependency>
vempo9125b482018-10-24 17:18:03 +030078 <dependency>
79 <groupId>org.mockito</groupId>
80 <artifactId>mockito-core</artifactId>
81 <scope>test</scope>
82 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020083 </dependencies>
84
shrikantawachar9a699252018-04-06 11:07:00 +053085
shrek2000c8a540b2017-09-11 15:45:37 +030086
AviZi280f8012017-06-09 02:39:56 +030087</project>