blob: c6f8aa17a0d16141255cf64c5e8d4ce3c93d2627 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xmlns="http://maven.apache.org/POM/4.0.0"
Michael Landof5f13c42017-02-19 12:35:04 +02003 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
Michael Lando61f98d42017-06-09 04:54:54 +03006 <groupId>org.openecomp.sdc.core</groupId>
AviZi280f8012017-06-09 02:39:56 +03007 <name>openecomp-tosca-lib</name>
8 <artifactId>openecomp-tosca-lib</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +02009
10 <parent>
11 <artifactId>openecomp-sdc-lib</artifactId>
12 <groupId>org.openecomp.sdc</groupId>
Michael Lando0ad3c802017-09-19 16:32:59 +030013 <version>1.2.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030014 <relativePath>..</relativePath>
Michael Landof5f13c42017-02-19 12:35:04 +020015 </parent>
16
Michael Landof5f13c42017-02-19 12:35:04 +020017 <dependencies>
18 <dependency>
Avi Zivb8e2faf2017-07-18 19:45:38 +030019 <groupId>org.openecomp.sdc.common</groupId>
20 <artifactId>openecomp-tosca-datatype</artifactId>
21 <version>${openecomp.sdc.common.version}</version>
22 </dependency>
23 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030024 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020025 <artifactId>openecomp-utilities-lib</artifactId>
26 <version>${project.version}</version>
27 </dependency>
28 <dependency>
29 <groupId>org.openecomp.sdc</groupId>
priyanshue812c4f2018-03-05 15:00:10 +053030 <artifactId>openecomp-sdc-validation-api</artifactId>
31 <version>${project.version}</version>
32 </dependency>
33 <dependency>
34 <groupId>org.openecomp.sdc</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020035 <artifactId>openecomp-sdc-datatypes-lib</artifactId>
36 <version>${project.version}</version>
37 </dependency>
38 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030039 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020040 <artifactId>openecomp-common-lib</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>ch.qos.logback</groupId>
45 <artifactId>logback-classic</artifactId>
AviZi280f8012017-06-09 02:39:56 +030046 <version>${logback.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020047 </dependency>
48 <dependency>
49 <groupId>junit</groupId>
50 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030051 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020052 <scope>test</scope>
53 </dependency>
54 <dependency>
Gautam Shah09a41f52018-04-11 19:55:29 +053055 <groupId>org.mockito</groupId>
56 <artifactId>mockito-all</artifactId>
57 <scope>test</scope>
58 <version>${mockito.all.version}</version>
59 </dependency>
60 <dependency>
AviZi280f8012017-06-09 02:39:56 +030061 <groupId>org.openecomp.sdc</groupId>
62 <artifactId>openecomp-sdc-logging-core</artifactId>
63 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020064 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020065 </dependency>
66 <dependency>
AviZi280f8012017-06-09 02:39:56 +030067 <groupId>org.openecomp.sdc.common</groupId>
68 <artifactId>openecomp-configuration-management-core</artifactId>
69 <version>${openecomp.sdc.common.version}</version>
70 <scope>runtime</scope>
71 <exclusions>
72 <exclusion>
73 <groupId>org.slf4j</groupId>
74 <artifactId>slf4j-log4j12</artifactId>
75 </exclusion>
76 </exclusions>
Michael Landof5f13c42017-02-19 12:35:04 +020077 </dependency>
AviZi280f8012017-06-09 02:39:56 +030078 <dependency>
79 <groupId>org.openecomp.sdc.common</groupId>
80 <artifactId>openecomp-configuration-management-api</artifactId>
81 <version>${openecomp.sdc.common.version}</version>
82 </dependency>
priyanshue812c4f2018-03-05 15:00:10 +053083 <dependency>
84 <groupId>org.openecomp.sdc.sdc-tosca</groupId>
85 <artifactId>sdc-tosca</artifactId>
86 <version>${sdc-tosca-parser.version}</version>
87 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020088 </dependencies>
shrikantawachar9a699252018-04-06 11:07:00 +053089
Michael Landof5f13c42017-02-19 12:35:04 +020090
AviZi280f8012017-06-09 02:39:56 +030091</project>