blob: 347f66126248354d33f494926f5a4aa9428ab37e [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 Landoebd7c8f2017-03-15 20:38:00 +020013 <version>1.1.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>
50 <groupId>org.openecomp.sdc.common</groupId>
51 <artifactId>openecomp-configuration-management-core</artifactId>
52 <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>
62 <groupId>org.openecomp.sdc.common</groupId>
63 <artifactId>openecomp-configuration-management-api</artifactId>
64 <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>