blob: 7f48864a7b9cab1f2ccd509c70157ff938fec0fa [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
Michael Lando61f98d42017-06-09 04:54:54 +03005 <groupId>org.openecomp.sdc.core</groupId>
AviZi280f8012017-06-09 02:39:56 +03006 <name>openecomp-heat-lib</name>
7 <artifactId>openecomp-heat-lib</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +02008
9 <parent>
10 <artifactId>openecomp-sdc-lib</artifactId>
11 <groupId>org.openecomp.sdc</groupId>
Michael Lando5920d2c2018-05-26 20:03:34 +030012 <version>1.3.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030013 <relativePath>..</relativePath>
Michael Landof5f13c42017-02-19 12:35:04 +020014 </parent>
15
Michael Landof5f13c42017-02-19 12:35:04 +020016 <dependencies>
17 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053018 <groupId>org.onap.sdc.common</groupId>
19 <artifactId>onap-configuration-management-core</artifactId>
shrek2000c8a540b2017-09-11 15:45:37 +030020 <version>${openecomp.sdc.common.version}</version>
21 <scope>runtime</scope>
22 <exclusions>
23 <exclusion>
24 <groupId>org.slf4j</groupId>
25 <artifactId>slf4j-log4j12</artifactId>
26 </exclusion>
27 </exclusions>
28 </dependency>
29 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053030 <groupId>org.onap.sdc.common</groupId>
31 <artifactId>onap-tosca-datatype</artifactId>
Avi Zivb8e2faf2017-07-18 19:45:38 +030032 <version>${openecomp.sdc.common.version}</version>
33 </dependency>
34 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030035 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020036 <artifactId>openecomp-utilities-lib</artifactId>
37 <version>${project.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>org.openecomp.sdc</groupId>
41 <artifactId>openecomp-sdc-datatypes-lib</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030045 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020046 <artifactId>openecomp-common-lib</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>ch.qos.logback</groupId>
51 <artifactId>logback-classic</artifactId>
AviZi280f8012017-06-09 02:39:56 +030052 <version>${logback.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020053 </dependency>
54 <dependency>
55 <groupId>junit</groupId>
56 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030057 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020058 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.openecomp.sdc</groupId>
62 <artifactId>openecomp-sdc-validation-api</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 </dependencies>
66
shrikantawachar9a699252018-04-06 11:07:00 +053067
shrek2000c8a540b2017-09-11 15:45:37 +030068
AviZi280f8012017-06-09 02:39:56 +030069</project>