blob: 1b2367eda50e16c4584f30ad7120c2b1aaea0609 [file] [log] [blame]
Herbert Eiselt8d39a392019-01-30 09:45:54 +01001<?xml version="1.0" encoding="UTF-8"?>
Herbert Eiselte26f1bf2019-03-29 10:53:28 +01002<!-- * ============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========================================================= -->
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050014<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">
herbert7ce54d62019-12-14 00:22:47 +010015 <modelVersion>4.0.0</modelVersion>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050016
herbert7ce54d62019-12-14 00:22:47 +010017 <parent>
18 <groupId>org.onap.ccsdk.parent</groupId>
19 <artifactId>binding-parent</artifactId>
20 <version>1.5.1-SNAPSHOT</version>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050021 <relativePath/>
herbert7ce54d62019-12-14 00:22:47 +010022 </parent>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050023
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 :: ${project.artifactId}</name>
30
31 <properties>
32 <checkstyle.skip>true</checkstyle.skip>
33 </properties>
34
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010035 <dependencies>
36 <dependency>
37 <groupId>javax.servlet</groupId>
38 <artifactId>servlet-api</artifactId>
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010039 </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>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010061
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010062 </dependencies>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050063
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010064 <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>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010076</project>