blob: a6370b57407eff6b6b5a5f94206c3c6f90d0bba4 [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"
19 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>
AviZi280f8012017-06-09 02:39:56 +030022 <artifactId>openecomp-sdc-common-rest</artifactId>
23 <name>openecomp-sdc-common-rest</name>
Michael Landof5f13c42017-02-19 12:35:04 +020024 <parent>
25 <groupId>org.openecomp.sdc</groupId>
26 <artifactId>openecomp-sdc-rest-webapp</artifactId>
Michael Landob5fc68f2018-11-15 13:36:12 +020027 <version>1.4.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020028 </parent>
29
Michael Landof5f13c42017-02-19 12:35:04 +020030 <dependencies>
31 <dependency>
az2497644017c2017-08-10 17:49:40 +030032 <groupId>org.openecomp.sdc</groupId>
33 <artifactId>openecomp-sdc-logging-core</artifactId>
34 <version>${project.version}</version>
vempoc3f68a32018-01-15 18:56:23 +020035 <scope>runtime</scope>
az2497644017c2017-08-10 17:49:40 +030036 </dependency>
az2497644017c2017-08-10 17:49:40 +030037 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030038 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020039 <artifactId>openecomp-utilities-lib</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030043 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020044 <artifactId>openecomp-common-lib</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.hibernate</groupId>
49 <artifactId>hibernate-validator</artifactId>
50 <version>${hibernate.validator.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>javax.ws.rs</groupId>
54 <artifactId>javax.ws.rs-api</artifactId>
55 <version>${ws.rs.version}</version>
56 </dependency>
57 <!-- Swagger -->
58 <dependency>
59 <groupId>io.swagger</groupId>
60 <artifactId>swagger-core</artifactId>
61 <version>${swagger.version}</version>
62 <scope>compile</scope>
63 </dependency>
sheetalm2d2e0b52018-02-08 09:30:02 +053064 <dependency>
65 <groupId>org.openecomp.sdc.core</groupId>
66 <artifactId>openecomp-session-lib</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>javax.servlet</groupId>
71 <artifactId>servlet-api</artifactId>
72 <version>${javax.servlet.version}</version>
vempod6d12912018-07-09 14:27:57 +030073 <scope>provided</scope>
sheetalm2d2e0b52018-02-08 09:30:02 +053074 </dependency>
vempocc628e42018-11-17 22:18:53 +020075 <dependency>
76 <groupId>junit</groupId>
77 <artifactId>junit</artifactId>
78 <scope>test</scope>
79 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020080 </dependencies>
81
82</project>