blob: f88db217188193191a0b7310d15e00c5e7dc79b1 [file] [log] [blame]
vempo2da911f2018-11-01 20:27:39 +02001<!--
2 ~ Copyright © 2016-2018 European Support Limited
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
AviZi280f8012017-06-09 02:39:56 +030017<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xmlns="http://maven.apache.org/POM/4.0.0"
Michael Landof5f13c42017-02-19 12:35:04 +020019 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
AviZi280f8012017-06-09 02:39:56 +030022 <name>openecomp-sdc-translator-api</name>
23 <artifactId>openecomp-sdc-translator-api</artifactId>
24
25
Michael Landof5f13c42017-02-19 12:35:04 +020026 <parent>
27 <groupId>org.openecomp.sdc</groupId>
28 <artifactId>openecomp-sdc-lib</artifactId>
Michael Landob5fc68f2018-11-15 13:36:12 +020029 <version>1.4.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020030 <relativePath>../..</relativePath>
31 </parent>
32
Michael Landof5f13c42017-02-19 12:35:04 +020033 <dependencies>
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-facade-core</artifactId>
37 <version>${project.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>org.openecomp.sdc</groupId>
41 <artifactId>openecomp-sdc-validation-api</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
AviZi280f8012017-06-09 02:39:56 +030045 <groupId>org.openecomp.sdc</groupId>
46 <artifactId>openecomp-sdc-validation-core</artifactId>
47 <version>${project.version}</version>
48 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020049 </dependency>
50 <dependency>
AviZi280f8012017-06-09 02:39:56 +030051 <groupId>io.swagger</groupId>
52 <artifactId>swagger-annotations</artifactId>
53 <version>${swagger.version}</version>
54 </dependency>
55 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030056 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020057 <artifactId>openecomp-heat-lib</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030061 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020062 <artifactId>openecomp-tosca-lib</artifactId>
63 <version>${project.version}</version>
64 </dependency>
AviZi280f8012017-06-09 02:39:56 +030065 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053066 <groupId>org.onap.sdc.common</groupId>
67 <artifactId>onap-configuration-management-core</artifactId>
vempo494e4422018-07-18 17:10:01 +030068 <version>${project.version}</version>
AviZi280f8012017-06-09 02:39:56 +030069 <scope>runtime</scope>
AviZi280f8012017-06-09 02:39:56 +030070 </dependency>
71 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053072 <groupId>org.onap.sdc.common</groupId>
73 <artifactId>onap-configuration-management-api</artifactId>
vempo494e4422018-07-18 17:10:01 +030074 <version>${project.version}</version>
AviZi280f8012017-06-09 02:39:56 +030075 </dependency>
vempo2da911f2018-11-01 20:27:39 +020076 <dependency>
77 <groupId>org.projectlombok</groupId>
78 <artifactId>lombok</artifactId>
79 <scope>provided</scope>
80 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020081 </dependencies>
82
AviZi280f8012017-06-09 02:39:56 +030083</project>