blob: c7ce96330c339cce13c4473bc218befe315032e5 [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 -->
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050025<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 +010026 <modelVersion>4.0.0</modelVersion>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050027
herbert7ce54d62019-12-14 00:22:47 +010028 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Dan Timoney24383fb2021-05-04 13:52:45 -040031 <version>2.1.4</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050032 <relativePath/>
herbert7ce54d62019-12-14 00:22:47 +010033 </parent>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050034
35 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36 <artifactId>sdnr-wt-helpserver-provider</artifactId>
Dan Timoney3ee092a2021-04-19 17:09:25 -040037 <version>1.1.5-SNAPSHOT</version>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050038 <packaging>bundle</packaging>
39
40 <name>ccsdk-features :: ${project.artifactId}</name>
41
42 <properties>
Aijana Schumannb439e2b2020-09-03 20:39:00 +020043 <maven.javadoc.skip>true</maven.javadoc.skip>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050044 </properties>
45
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010046 <dependencies>
47 <dependency>
Ravi Pendurty8bbecea2021-02-03 14:18:39 +010048 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
49 <artifactId>sdnr-wt-common</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52 <dependency>
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010053 <groupId>javax.servlet</groupId>
Ravi Pendurty8bbecea2021-02-03 14:18:39 +010054 <artifactId>javax.servlet-api</artifactId>
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010055 </dependency>
56 <dependency>
57 <groupId>org.slf4j</groupId>
58 <artifactId>slf4j-simple</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.json</groupId>
62 <artifactId>json</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.osgi</groupId>
66 <artifactId>org.osgi.core</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.osgi</groupId>
70 <artifactId>org.osgi.compendium</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.mockito</groupId>
74 <artifactId>mockito-core</artifactId>
75 <scope>test</scope>
76 </dependency>
Aijana Schumannb439e2b2020-09-03 20:39:00 +020077
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010078 </dependencies>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050079
Herbert Eiselte26f1bf2019-03-29 10:53:28 +010080 <build>
81 <plugins>
82 <!-- fixed bug for sonarcube -->
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-surefire-plugin</artifactId>
86 <configuration>
87 <useSystemClassLoader>false</useSystemClassLoader>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010092</project>