blob: 7c7d1fd125f90d89b9b5bfd945af8d529bfb7f6d [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========================================================= -->
14<project xmlns="http://maven.apache.org/POM/4.0.0"
15 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Herbert Eiselt8d39a392019-01-30 09:45:54 +010017
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010018 <modelVersion>4.0.0</modelVersion>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010019
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010020 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
21 <artifactId>sdnr-wt-helpserver-provider</artifactId>
22 <version>0.4.2-SNAPSHOT</version>
23 <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
24 <packaging>bundle</packaging>
25 <properties>
26 <checkstyle.skip>true</checkstyle.skip>
27 </properties>
28 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>binding-parent</artifactId>
31 <version>1.2.2-SNAPSHOT</version>
32 <relativePath />
33 </parent>
34 <dependencies>
35 <dependency>
36 <groupId>javax.servlet</groupId>
37 <artifactId>servlet-api</artifactId>
38 <version>2.5</version>
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>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010061
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010062 </dependencies>
63 <build>
64 <plugins>
65 <!-- fixed bug for sonarcube -->
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-surefire-plugin</artifactId>
69 <configuration>
70 <useSystemClassLoader>false</useSystemClassLoader>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010075</project>