blob: 487e0880665993e624be71908293ee8647809ccb [file] [log] [blame]
Herbert Eiselt8d39a392019-01-30 09:45:54 +01001<?xml version="1.0" encoding="UTF-8"?>
Michael Dürre10cd5992020-01-31 09:35:15 +01002<!--
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05003 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
7 ~ All rights reserved.
8 ~ ================================================================================
9 ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10 ~ ================================================================================
11 ~ Licensed under the Apache License, Version 2.0 (the "License");
12 ~ you may not use this file except in compliance with the License.
13 ~ You may obtain a copy of the License at
14 ~
15 ~ http://www.apache.org/licenses/LICENSE-2.0
16 ~
17 ~ Unless required by applicable law or agreed to in writing, software
18 ~ distributed under the License is distributed on an "AS IS" BASIS,
19 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 ~ See the License for the specific language governing permissions and
21 ~ limitations under the License.
22 ~ ============LICENSE_END=======================================================
23 ~
24 -->
25
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050026<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 +010027 <modelVersion>4.0.0</modelVersion>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050028
herbert7ce54d62019-12-14 00:22:47 +010029 <parent>
30 <groupId>org.onap.ccsdk.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -040032 <version>2.0.1-SNAPSHOT</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050033 <relativePath/>
herbert7ce54d62019-12-14 00:22:47 +010034 </parent>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050035
36 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37 <artifactId>sdnr-wt-helpserver-provider</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -040038 <version>1.0.1-SNAPSHOT</version>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050039 <packaging>bundle</packaging>
40
41 <name>ccsdk-features :: ${project.artifactId}</name>
42
43 <properties>
Aijana Schumannb439e2b2020-09-03 20:39:00 +020044 <maven.javadoc.skip>true</maven.javadoc.skip>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050045 <checkstyle.skip>true</checkstyle.skip>
46 </properties>
47
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010048 <dependencies>
49 <dependency>
50 <groupId>javax.servlet</groupId>
51 <artifactId>servlet-api</artifactId>
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010052 </dependency>
53 <dependency>
54 <groupId>org.slf4j</groupId>
55 <artifactId>slf4j-simple</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.json</groupId>
59 <artifactId>json</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.osgi</groupId>
63 <artifactId>org.osgi.core</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.osgi</groupId>
67 <artifactId>org.osgi.compendium</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.mockito</groupId>
71 <artifactId>mockito-core</artifactId>
72 <scope>test</scope>
73 </dependency>
Aijana Schumannb439e2b2020-09-03 20:39:00 +020074
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010075 </dependencies>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050076
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010077 <build>
78 <plugins>
79 <!-- fixed bug for sonarcube -->
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-surefire-plugin</artifactId>
83 <configuration>
84 <useSystemClassLoader>false</useSystemClassLoader>
85 </configuration>
86 </plugin>
87 </plugins>
88 </build>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010089</project>