Migrated VNF to JAX-RS HTTP client
[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" 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>
22
23     <artifactId>vnf-repository-rest-services</artifactId>
24
25     <parent>
26         <groupId>org.openecomp.sdc.onboarding</groupId>
27         <artifactId>vendor-software-products-rest</artifactId>
28         <version>1.3.0-SNAPSHOT</version>
29     </parent>
30
31     <dependencies>
32         <dependency>
33             <groupId>javax.ws.rs</groupId>
34             <artifactId>javax.ws.rs-api</artifactId>
35             <version>${ws.rs.version}</version>
36             <scope>provided</scope>
37         </dependency>
38         <dependency>
39             <groupId>io.swagger</groupId>
40             <artifactId>swagger-annotations</artifactId>
41             <version>${swagger.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>org.springframework</groupId>
45             <artifactId>spring-context</artifactId>
46             <version>${spring.framework.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>org.openecomp.sdc.onboarding</groupId>
50             <artifactId>vendor-software-products-rest-services</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>org.onap.sdc.common</groupId>
55             <artifactId>onap-configuration-management-api</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>org.onap.sdc.common</groupId>
60             <artifactId>onap-configuration-management-core</artifactId>
61             <version>${project.version}</version>
62             <scope>runtime</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.openecomp.sdc</groupId>
66             <artifactId>openecomp-sdc-logging-api</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.openecomp.sdc</groupId>
71             <artifactId>openecomp-sdc-logging-core</artifactId>
72             <version>${project.version}</version>
73             <scope>runtime</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.apache.cxf</groupId>
77             <artifactId>cxf-rt-rs-client</artifactId>
78             <version>${cxf.version}</version>
79             <scope>runtime</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.slf4j</groupId>
83             <artifactId>slf4j-simple</artifactId>
84             <version>${slf4j.version}</version>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>junit</groupId>
89             <artifactId>junit</artifactId>
90             <version>${junit.version}</version>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>com.github.tomakehurst</groupId>
95             <artifactId>wiremock</artifactId>
96             <version>2.18.0</version>
97             <scope>test</scope>
98         </dependency>
99     </dependencies>
100
101     <build>
102         <plugins>
103             <plugin>
104                 <groupId>org.apache.maven.plugins</groupId>
105                 <artifactId>maven-surefire-plugin</artifactId>
106             </plugin>
107         </plugins>
108     </build>
109
110 </project>