Update version to 1.13.6-SNAPSHOT
[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.13.6-SNAPSHOT</version>
30   </parent>
31   <modelVersion>4.0.0</modelVersion>
32
33   <artifactId>metrics-rest</artifactId>
34
35   <dependencies>
36     <dependency>
37       <groupId>jakarta.ws.rs</groupId>
38       <artifactId>jakarta.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       <exclusions>
51         <exclusion>
52           <groupId>org.springframework</groupId>
53           <artifactId>spring-core</artifactId>
54         </exclusion>
55       </exclusions>
56     </dependency>
57     <dependency>
58       <groupId>org.springframework</groupId>
59       <artifactId>spring-webmvc</artifactId>
60       <version>${spring.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>io.micrometer</groupId>
64       <artifactId>micrometer-registry-prometheus</artifactId>
65       <version>${micrometer.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>io.swagger.core.v3</groupId>
69       <artifactId>swagger-annotations</artifactId>
70       <version>${swagger.version}</version>
71     </dependency>
72   </dependencies>
73
74 </project>