blob: ff6a0b30e2cbbf88dc1f1a0256e7437ad377695a [file] [log] [blame]
wasalab80bcb82018-03-26 15:48:46 +02001<?xml version="1.0" encoding="UTF-8"?>
wasala961af3e2018-03-27 13:02:10 +02002<!--
3 ~ ============LICENSE_START=======================================================
wasala9292dd22018-03-28 19:04:20 +02004 ~ PNF-REGISTRATION-HANDLER
wasala961af3e2018-03-27 13:02:10 +02005 ~ ================================================================================
6 ~ Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
7 ~ ================================================================================
8 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 ~ ============LICENSE_END=========================================================
20 -->
wasalab80bcb82018-03-26 15:48:46 +020021<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <parent>
25 <artifactId>prh</artifactId>
26 <groupId>org.onap.dcaegen2.services</groupId>
27 <version>1.0.0-SNAPSHOT</version>
28 </parent>
29 <modelVersion>4.0.0</modelVersion>
30
31 <artifactId>prh-dmaap-client</artifactId>
wasala961af3e2018-03-27 13:02:10 +020032 <groupId>org.onap.dcaegen2.services.prh</groupId>
33 <packaging>jar</packaging>
wasalab80bcb82018-03-26 15:48:46 +020034
wasala961af3e2018-03-27 13:02:10 +020035
36 <properties>
37 <main.basedir>${project.parent.basedir}</main.basedir>
38 </properties>
39
40 <dependencies>
41
42 <!-- DEVELOPMENT DEPENDENCIES -->
43 <dependency>
44 <groupId>org.immutables</groupId>
45 <artifactId>value</artifactId>
46 </dependency>
wasala3c2e8c92018-04-12 13:37:41 +020047 <dependency>
wasalab196f932018-04-17 12:25:54 +020048 <groupId>org.immutables</groupId>
49 <artifactId>gson</artifactId>
wasala3c2e8c92018-04-12 13:37:41 +020050 </dependency>
wasala23f7acc2018-04-18 11:03:03 +020051 <dependency>
52 <groupId>org.apache.httpcomponents</groupId>
53 <artifactId>httpclient</artifactId>
54 </dependency>
55
wasala961af3e2018-03-27 13:02:10 +020056
57 <!-- LOGGING DEPENDENCIES -->
58 <dependency>
wasala961af3e2018-03-27 13:02:10 +020059 <groupId>ch.qos.logback</groupId>
60 <artifactId>logback-classic</artifactId>
61 </dependency>
wasalad8e4e882018-03-28 14:20:58 +020062 <dependency>
63 <groupId>org.slf4j</groupId>
64 <artifactId>jul-to-slf4j</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.slf4j</groupId>
68 <artifactId>log4j-over-slf4j</artifactId>
69 </dependency>
wasala961af3e2018-03-27 13:02:10 +020070
71
72 <!-- TEST DEPENDENCIES-->
73 <dependency>
74 <groupId>org.junit.jupiter</groupId>
75 <artifactId>junit-jupiter-api</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>junit</groupId>
80 <artifactId>junit</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.junit.jupiter</groupId>
85 <artifactId>junit-jupiter-engine</artifactId>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.junit.vintage</groupId>
90 <artifactId>junit-vintage-engine</artifactId>
91 <scope>test</scope>
92 </dependency>
wasala86690cd2018-04-03 14:41:23 +020093 <dependency>
94 <groupId>org.springframework</groupId>
95 <artifactId>spring-context</artifactId>
wasala86690cd2018-04-03 14:41:23 +020096 </dependency>
pwielebsa2743742018-04-21 16:51:20 +020097 <dependency>
98 <groupId>org.mockito</groupId>
99 <artifactId>mockito-core</artifactId>
100 <scope>test</scope>
101 </dependency>
wasala961af3e2018-03-27 13:02:10 +0200102 </dependencies>
wasalab80bcb82018-03-26 15:48:46 +0200103</project>