blob: e1bdeb09c1103aa45c1361870bee7e7e4abcbaef [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<?xml version="1.0" encoding="UTF-8"?>
vempocc628e42018-11-17 22:18:53 +02002<!--
3 ~ Copyright © 2016-2018 European Support Limited
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17
Michael Landof5f13c42017-02-19 12:35:04 +020018<project xmlns="http://maven.apache.org/POM/4.0.0"
ys969316a9fce2020-01-19 13:50:02 +020019 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22 <artifactId>openecomp-sdc-common-rest</artifactId>
23 <name>openecomp-sdc-common-rest</name>
24 <parent>
25 <groupId>org.openecomp.sdc</groupId>
26 <artifactId>openecomp-sdc-rest-webapp</artifactId>
27 <version>1.6.0-SNAPSHOT</version>
28 </parent>
Michael Landof5f13c42017-02-19 12:35:04 +020029
ys969316a9fce2020-01-19 13:50:02 +020030 <properties>
31 </properties>
Tomasz Golabekcc78e0c2019-08-21 09:18:38 +020032
ys969316a9fce2020-01-19 13:50:02 +020033 <dependencies>
34 <dependency>
35 <groupId>org.openecomp.sdc</groupId>
36 <artifactId>openecomp-sdc-logging-core</artifactId>
37 <version>${project.version}</version>
38 <scope>runtime</scope>
39 </dependency>
40 <dependency>
41 <groupId>org.openecomp.sdc.core</groupId>
42 <artifactId>openecomp-utilities-lib</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.openecomp.sdc.core</groupId>
47 <artifactId>openecomp-common-lib</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.hibernate</groupId>
52 <artifactId>hibernate-validator</artifactId>
53 <version>${hibernate.validator.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>javax.ws.rs</groupId>
57 <artifactId>javax.ws.rs-api</artifactId>
58 <version>${ws.rs.version}</version>
59 </dependency>
60 <!-- Swagger -->
61 <dependency>
62 <groupId>io.swagger.core.v3</groupId>
63 <artifactId>swagger-core</artifactId>
64 <version>${swagger.version}</version>
65 <scope>compile</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.openecomp.sdc.core</groupId>
69 <artifactId>openecomp-session-lib</artifactId>
70 <version>${project.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>javax.servlet</groupId>
74 <artifactId>servlet-api</artifactId>
75 <version>${javax.servlet.version}</version>
76 <scope>provided</scope>
77 </dependency>
78 <dependency>
79 <groupId>junit</groupId>
80 <artifactId>junit</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.glassfish.jersey.core</groupId>
85 <artifactId>jersey-common</artifactId>
86 <version>${jersey-bom.version}</version>
87 <scope>test</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.mockito</groupId>
91 <artifactId>mockito-core</artifactId>
92 <scope>test</scope>
93 </dependency>
94 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020095
Wojciech Sliwka38b3b952019-07-03 08:38:28 +020096</project>