blob: 55ab0623b4e64fc3cdc89be931a016323eb9d83c [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 Landoebd7c8f2017-03-15 20:38:00 +020012 <version>1.1.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>
Avi Zivb8e2faf2017-07-18 19:45:38 +030018 <groupId>org.openecomp.sdc.common</groupId>
19 <artifactId>openecomp-tosca-datatype</artifactId>
20 <version>${openecomp.sdc.common.version}</version>
21 </dependency>
22 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030023 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020024 <artifactId>openecomp-utilities-lib</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27 <dependency>
28 <groupId>org.openecomp.sdc</groupId>
29 <artifactId>openecomp-sdc-datatypes-lib</artifactId>
30 <version>${project.version}</version>
31 </dependency>
32 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030033 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020034 <artifactId>openecomp-common-lib</artifactId>
35 <version>${project.version}</version>
36 </dependency>
37 <dependency>
38 <groupId>ch.qos.logback</groupId>
39 <artifactId>logback-classic</artifactId>
AviZi280f8012017-06-09 02:39:56 +030040 <version>${logback.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020041 </dependency>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030045 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020046 <scope>test</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.openecomp.sdc</groupId>
50 <artifactId>openecomp-sdc-validation-api</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 </dependencies>
54
AviZi280f8012017-06-09 02:39:56 +030055</project>