Refactoring POM as per tidy:pom
[ccsdk/features.git] / sdnr / wt / helpserver / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- * ============LICENSE_START=======================================================
3     * ONAP : CCSDK.sdnr.wt.apigateway.provider * ================================================================================
4     * Copyright (C) 2018 highstreet technologies GmbH Intellectual Property.
5     * All rights reserved. * ================================================================================
6     * Licensed under the Apache License, Version 2.0 (the "License"); * you may
7     not use this file except in compliance with the License. * You may obtain
8     a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *
9     * Unless required by applicable law or agreed to in writing, software * distributed
10     under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES
11     OR CONDITIONS OF ANY KIND, either express or implied. * See the License for
12     the specific language governing permissions and * limitations under the License.
13     * ============LICENSE_END========================================================= -->
14 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
15     <modelVersion>4.0.0</modelVersion>
16
17     <parent>
18         <groupId>org.onap.ccsdk.parent</groupId>
19         <artifactId>binding-parent</artifactId>
20         <version>1.5.1-SNAPSHOT</version>
21         <relativePath/>
22     </parent>
23
24     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
25     <artifactId>sdnr-wt-helpserver-provider</artifactId>
26     <version>0.7.0-SNAPSHOT</version>
27     <packaging>bundle</packaging>
28
29     <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
30
31     <properties>
32         <checkstyle.skip>true</checkstyle.skip>
33     </properties>
34
35     <dependencies>
36         <dependency>
37             <groupId>javax.servlet</groupId>
38             <artifactId>servlet-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.slf4j</groupId>
42             <artifactId>slf4j-simple</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.json</groupId>
46             <artifactId>json</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.osgi</groupId>
50             <artifactId>org.osgi.core</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.osgi</groupId>
54             <artifactId>org.osgi.compendium</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.mockito</groupId>
58             <artifactId>mockito-core</artifactId>
59             <scope>test</scope>
60         </dependency>
61
62     </dependencies>
63
64     <build>
65         <plugins>
66             <!-- fixed bug for sonarcube -->
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-surefire-plugin</artifactId>
70                 <configuration>
71                     <useSystemClassLoader>false</useSystemClassLoader>
72                 </configuration>
73             </plugin>
74         </plugins>
75     </build>
76 </project>