Prepare for Junit5
[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.7.0-SNAPSHOT</version>
30   </parent>
31
32   <dependencies>
33     <dependency>
34       <groupId>javax.ws.rs</groupId>
35       <artifactId>javax.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-context</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.openecomp.sdc.onboarding</groupId>
48       <artifactId>vendor-software-products-rest-services</artifactId>
49       <version>${project.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.onap.sdc.common</groupId>
53       <artifactId>onap-configuration-management-api</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>org.onap.sdc.common</groupId>
58       <artifactId>onap-configuration-management-core</artifactId>
59       <version>${project.version}</version>
60       <scope>runtime</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.openecomp.sdc</groupId>
64       <artifactId>openecomp-sdc-logging-api</artifactId>
65       <version>${project.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.openecomp.sdc</groupId>
69       <artifactId>openecomp-sdc-logging-core</artifactId>
70       <version>${project.version}</version>
71       <scope>runtime</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.apache.cxf</groupId>
75       <artifactId>cxf-rt-rs-client</artifactId>
76       <version>${cxf.version}</version>
77       <scope>runtime</scope>
78     </dependency>
79     <dependency>
80       <groupId>ch.qos.logback</groupId>
81       <artifactId>logback-classic</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>com.github.tomakehurst</groupId>
86       <artifactId>wiremock-standalone</artifactId>
87       <version>2.6.0</version>
88       <scope>test</scope>
89     </dependency>
90   </dependencies>
91
92   <build>
93     <plugins>
94       <plugin>
95         <groupId>org.apache.maven.plugins</groupId>
96         <artifactId>maven-surefire-plugin</artifactId>
97         <version>${maven-surefire-plugin.version}</version>
98       </plugin>
99     </plugins>
100   </build>
101
102 </project>