Improved JaCoCo configuration
[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             <scope>provided</scope>
36         </dependency>
37         <dependency>
38             <groupId>io.swagger</groupId>
39             <artifactId>swagger-annotations</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.springframework</groupId>
43             <artifactId>spring-context</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.openecomp.sdc.onboarding</groupId>
47             <artifactId>vendor-software-products-rest-services</artifactId>
48             <version>${project.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.onap.sdc.common</groupId>
52             <artifactId>onap-configuration-management-api</artifactId>
53             <version>${project.version}</version>
54         </dependency>
55         <dependency>
56             <groupId>org.onap.sdc.common</groupId>
57             <artifactId>onap-configuration-management-core</artifactId>
58             <version>${project.version}</version>
59             <scope>runtime</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.openecomp.sdc</groupId>
63             <artifactId>openecomp-sdc-logging-api</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>org.openecomp.sdc</groupId>
68             <artifactId>openecomp-sdc-logging-core</artifactId>
69             <version>${project.version}</version>
70             <scope>runtime</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.apache.cxf</groupId>
74             <artifactId>cxf-rt-rs-client</artifactId>
75             <version>${cxf.version}</version>
76             <scope>runtime</scope>
77         </dependency>
78         <dependency>
79             <groupId>ch.qos.logback</groupId>
80             <artifactId>logback-classic</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>junit</groupId>
85             <artifactId>junit</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>com.github.tomakehurst</groupId>
90             <artifactId>wiremock</artifactId>
91             <scope>test</scope>
92         </dependency>
93     </dependencies>
94
95     <build>
96         <plugins>
97             <plugin>
98                 <groupId>org.apache.maven.plugins</groupId>
99                 <artifactId>maven-surefire-plugin</artifactId>
100             </plugin>
101         </plugins>
102     </build>
103
104 </project>