Update version to 1.13.6-SNAPSHOT
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vnf-repository-rest-services / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright 2017 Huawei Technologies Co., Ltd.
4   ~ Modifications Copyright 2018 European Support Limited
5   ~
6   ~ Licensed under the Apache License, Version 2.0 (the "License");
7   ~ you may not use this file except in compliance with the License.
8   ~ You may obtain a copy of the License at
9   ~
10   ~      http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~ Unless required by applicable law or agreed to in writing, software
13   ~ distributed under the License is distributed on an "AS IS" BASIS,
14   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   ~ See the License for the specific language governing permissions and
16   ~ limitations under the License.
17   -->
18
19 <project xmlns="http://maven.apache.org/POM/4.0.0"
20          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22     <modelVersion>4.0.0</modelVersion>
23
24     <artifactId>vnf-repository-rest-services</artifactId>
25
26     <parent>
27         <groupId>org.openecomp.sdc.onboarding</groupId>
28         <artifactId>vendor-software-products-rest</artifactId>
29         <version>1.13.6-SNAPSHOT</version>
30     </parent>
31
32     <dependencies>
33         <dependency>
34             <groupId>jakarta.ws.rs</groupId>
35             <artifactId>jakarta.ws.rs-api</artifactId>
36             <scope>provided</scope>
37         </dependency>
38         <dependency>
39             <groupId>io.swagger.core.v3</groupId>
40             <artifactId>swagger-annotations</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.springframework</groupId>
44             <artifactId>spring-expression</artifactId>
45             <version>${spring.framework.version}</version>
46             <exclusions>
47                 <exclusion>
48                     <groupId>org.springframework</groupId>
49                     <artifactId>spring-core</artifactId>
50                 </exclusion>
51             </exclusions>
52         </dependency>
53         <dependency>
54             <groupId>org.springframework</groupId>
55             <artifactId>spring-context</artifactId>
56             <exclusions>
57                 <exclusion>
58                     <groupId>org.springframework</groupId>
59                     <artifactId>spring-expression</artifactId>
60                 </exclusion>
61                 <exclusion>
62                     <groupId>org.springframework</groupId>
63                     <artifactId>spring-core</artifactId>
64                 </exclusion>
65             </exclusions>
66         </dependency>
67         <dependency>
68             <groupId>org.openecomp.sdc.onboarding</groupId>
69             <artifactId>vendor-software-products-rest-services</artifactId>
70             <version>${project.version}</version>
71             <exclusions>
72                 <exclusion>
73                     <groupId>org.springframework</groupId>
74                     <artifactId>spring-core</artifactId>
75                 </exclusion>
76                 <exclusion>
77                     <groupId>org.springframework</groupId>
78                     <artifactId>spring-web</artifactId>
79                 </exclusion>
80             </exclusions>
81         </dependency>
82         <dependency>
83             <groupId>org.onap.sdc.common</groupId>
84             <artifactId>onap-configuration-management-api</artifactId>
85             <version>${project.version}</version>
86         </dependency>
87         <dependency>
88             <groupId>org.onap.sdc.common</groupId>
89             <artifactId>onap-configuration-management-core</artifactId>
90             <version>${project.version}</version>
91             <scope>runtime</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.openecomp.sdc</groupId>
95             <artifactId>openecomp-sdc-logging-api</artifactId>
96             <version>${project.version}</version>
97         </dependency>
98         <dependency>
99             <groupId>org.openecomp.sdc</groupId>
100             <artifactId>openecomp-sdc-logging-core</artifactId>
101             <version>${project.version}</version>
102             <scope>runtime</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.apache.cxf</groupId>
106             <artifactId>cxf-rt-rs-client</artifactId>
107             <version>${cxf.version}</version>
108             <scope>runtime</scope>
109             <exclusions>
110                 <exclusion>
111                     <groupId>org.jboss.spec.javax.rmi</groupId>
112                     <artifactId>jboss-rmi-api_1.0_spec</artifactId>
113                 </exclusion>
114             </exclusions>
115         </dependency>
116         <dependency>
117             <groupId>ch.qos.logback</groupId>
118             <artifactId>logback-classic</artifactId>
119             <version>${logback.version}</version>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>com.github.tomakehurst</groupId>
124             <artifactId>wiremock-standalone</artifactId>
125             <version>${wire-mock.version}</version>
126             <scope>test</scope>
127         </dependency>
128     </dependencies>
129
130 </project>