blob: 1c5166ce86aa8e51afd8ccb47fc1ec7bc10a7e1e [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>
JulienBeb485c372020-10-28 11:50:25 -040028 <artifactId>openecomp-sdc-translator-lib</artifactId>
ChrisC1979c922021-03-04 15:39:21 +010029 <version>1.8.3-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020030 </parent>
31
Michael Landof5f13c42017-02-19 12:35:04 +020032 <dependencies>
33 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030034 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020035 <artifactId>openecomp-facade-core</artifactId>
36 <version>${project.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>org.openecomp.sdc</groupId>
40 <artifactId>openecomp-sdc-validation-api</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43 <dependency>
AviZi280f8012017-06-09 02:39:56 +030044 <groupId>org.openecomp.sdc</groupId>
45 <artifactId>openecomp-sdc-validation-core</artifactId>
46 <version>${project.version}</version>
47 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020048 </dependency>
49 <dependency>
Wojciech Sliwka38b3b952019-07-03 08:38:28 +020050 <groupId>io.swagger.core.v3</groupId>
AviZi280f8012017-06-09 02:39:56 +030051 <artifactId>swagger-annotations</artifactId>
52 <version>${swagger.version}</version>
53 </dependency>
54 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030055 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020056 <artifactId>openecomp-heat-lib</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030060 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020061 <artifactId>openecomp-tosca-lib</artifactId>
62 <version>${project.version}</version>
63 </dependency>
AviZi280f8012017-06-09 02:39:56 +030064 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053065 <groupId>org.onap.sdc.common</groupId>
66 <artifactId>onap-configuration-management-core</artifactId>
vempo494e4422018-07-18 17:10:01 +030067 <version>${project.version}</version>
AviZi280f8012017-06-09 02:39:56 +030068 <scope>runtime</scope>
AviZi280f8012017-06-09 02:39:56 +030069 </dependency>
70 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053071 <groupId>org.onap.sdc.common</groupId>
72 <artifactId>onap-configuration-management-api</artifactId>
vempo494e4422018-07-18 17:10:01 +030073 <version>${project.version}</version>
AviZi280f8012017-06-09 02:39:56 +030074 </dependency>
vempo2da911f2018-11-01 20:27:39 +020075 <dependency>
76 <groupId>org.projectlombok</groupId>
77 <artifactId>lombok</artifactId>
78 <scope>provided</scope>
79 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020080 </dependencies>
81
AviZi280f8012017-06-09 02:39:56 +030082</project>