blob: e2596d1723004b023e9dc3880a5bce0b7636bed4 [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
AviZi280f8012017-06-09 02:39:56 +03006 <name>openecomp-sdc-translator-api</name>
7 <artifactId>openecomp-sdc-translator-api</artifactId>
8
9
Michael Landof5f13c42017-02-19 12:35:04 +020010 <parent>
11 <groupId>org.openecomp.sdc</groupId>
12 <artifactId>openecomp-sdc-lib</artifactId>
Michael Lando5920d2c2018-05-26 20:03:34 +030013 <version>1.3.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020014 <relativePath>../..</relativePath>
15 </parent>
16
Michael Landof5f13c42017-02-19 12:35:04 +020017 <dependencies>
18 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030019 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020020 <artifactId>openecomp-facade-core</artifactId>
21 <version>${project.version}</version>
22 </dependency>
23 <dependency>
24 <groupId>org.openecomp.sdc</groupId>
25 <artifactId>openecomp-sdc-validation-api</artifactId>
26 <version>${project.version}</version>
27 </dependency>
28 <dependency>
AviZi280f8012017-06-09 02:39:56 +030029 <groupId>org.openecomp.sdc</groupId>
30 <artifactId>openecomp-sdc-validation-core</artifactId>
31 <version>${project.version}</version>
32 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020033 </dependency>
34 <dependency>
AviZi280f8012017-06-09 02:39:56 +030035 <groupId>io.swagger</groupId>
36 <artifactId>swagger-annotations</artifactId>
37 <version>${swagger.version}</version>
38 </dependency>
39 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030040 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020041 <artifactId>openecomp-heat-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-tosca-lib</artifactId>
47 <version>${project.version}</version>
48 </dependency>
AviZi280f8012017-06-09 02:39:56 +030049 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053050 <groupId>org.onap.sdc.common</groupId>
51 <artifactId>onap-configuration-management-core</artifactId>
AviZi280f8012017-06-09 02:39:56 +030052 <version>${openecomp.sdc.common.version}</version>
53 <scope>runtime</scope>
54 <exclusions>
55 <exclusion>
56 <groupId>org.slf4j</groupId>
57 <artifactId>slf4j-log4j12</artifactId>
58 </exclusion>
59 </exclusions>
60 </dependency>
61 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053062 <groupId>org.onap.sdc.common</groupId>
63 <artifactId>onap-configuration-management-api</artifactId>
AviZi280f8012017-06-09 02:39:56 +030064 <version>${openecomp.sdc.common.version}</version>
65 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020066 </dependencies>
67
AviZi280f8012017-06-09 02:39:56 +030068</project>