4b34fce3b88e721fb7e8df284308828e69f41454
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / metrics-rest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ -
4   ~  ============LICENSE_START=======================================================
5   ~  Copyright (C) 2022 Nordix Foundation.
6   ~  ================================================================================
7   ~  Licensed under the Apache License, Version 2.0 (the "License");
8   ~  you may not use this file except in compliance with the License.
9   ~  You may obtain a copy of the License at
10   ~
11   ~       http://www.apache.org/licenses/LICENSE-2.0
12   ~
13   ~  Unless required by applicable law or agreed to in writing, software
14   ~  distributed under the License is distributed on an "AS IS" BASIS,
15   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   ~  See the License for the specific language governing permissions and
17   ~  limitations under the License.
18   ~
19   ~  SPDX-License-Identifier: Apache-2.0
20   ~  ============LICENSE_END=========================================================
21   -->
22
23 <project xmlns="http://maven.apache.org/POM/4.0.0"
24   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26   <parent>
27     <groupId>org.openecomp.sdc</groupId>
28     <artifactId>openecomp-sdc-rest-webapp</artifactId>
29     <version>1.11.4-SNAPSHOT</version>
30   </parent>
31   <modelVersion>4.0.0</modelVersion>
32
33   <artifactId>metrics-rest</artifactId>
34
35   <dependencies>
36     <dependency>
37       <groupId>javax.ws.rs</groupId>
38       <artifactId>javax.ws.rs-api</artifactId>
39       <version>${ws.rs.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.springframework</groupId>
43       <artifactId>spring-context</artifactId>
44       <version>${spring.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>org.springframework</groupId>
48       <artifactId>spring-web</artifactId>
49       <version>${spring.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.springframework</groupId>
53       <artifactId>spring-webmvc</artifactId>
54       <version>${spring.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>io.micrometer</groupId>
58       <artifactId>micrometer-registry-prometheus</artifactId>
59       <version>${micrometer.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>io.swagger.core.v3</groupId>
63       <artifactId>swagger-annotations</artifactId>
64       <version>${swagger.version}</version>
65     </dependency>
66   </dependencies>
67
68 </project>