blob: 94cd2459158f560317932e4508fd2c9dfed1e31b [file] [log] [blame]
pwielebsa393ae32018-05-07 16:58:20 +02001<?xml version="1.0" encoding="UTF-8"?>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +02002<!--
3 ~ ============LICENSE_START=======================================================
4 ~ PNF-REGISTRATION-HANDLER
5 ~ ================================================================================
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 -->
21<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">
wasala2a6eb942018-06-18 11:45:08 +020024 <modelVersion>4.0.0</modelVersion>
pwielebsa393ae32018-05-07 16:58:20 +020025
wasala2a6eb942018-06-18 11:45:08 +020026 <parent>
wasala2a6eb942018-06-18 11:45:08 +020027 <groupId>org.onap.dcaegen2.services</groupId>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020028 <artifactId>prh</artifactId>
pwielebscb85d682018-05-07 16:58:20 +020029 <version>1.0.0-SNAPSHOT</version>
wasala2a6eb942018-06-18 11:45:08 +020030 </parent>
pwielebsa393ae32018-05-07 16:58:20 +020031
wasala2a6eb942018-06-18 11:45:08 +020032 <groupId>org.onap.dcaegen2.services.prh</groupId>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020033 <artifactId>prh-commons</artifactId>
wasala2a6eb942018-06-18 11:45:08 +020034 <packaging>jar</packaging>
pwielebscb85d682018-05-07 16:58:20 +020035
wasala2a6eb942018-06-18 11:45:08 +020036 <dependencies>
37 <dependency>
38 <groupId>org.immutables</groupId>
39 <artifactId>value</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.immutables</groupId>
43 <artifactId>gson</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.httpcomponents</groupId>
47 <artifactId>httpclient</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.apache.commons</groupId>
51 <artifactId>commons-lang3</artifactId>
52 </dependency>
pwielebsa393ae32018-05-07 16:58:20 +020053
wasala2a6eb942018-06-18 11:45:08 +020054 <dependency>
55 <groupId>org.junit.jupiter</groupId>
56 <artifactId>junit-jupiter-api</artifactId>
57 <scope>test</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.junit.jupiter</groupId>
61 <artifactId>junit-jupiter-engine</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.mockito</groupId>
66 <artifactId>mockito-core</artifactId>
67 <scope>test</scope>
68 </dependency>
pwielebs7ddaf392018-05-23 15:31:11 +020069
wasala2a6eb942018-06-18 11:45:08 +020070 <dependency>
71 <groupId>ch.qos.logback</groupId>
72 <artifactId>logback-classic</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.slf4j</groupId>
76 <artifactId>jul-to-slf4j</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.slf4j</groupId>
80 <artifactId>log4j-over-slf4j</artifactId>
81 </dependency>
82 </dependencies>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020083</project>