blob: 703b92cf1856d6932bacdff9adc8a40dabab6dcf [file] [log] [blame]
pwielebsa393ae32018-05-07 16:58:20 +02001<?xml version="1.0" encoding="UTF-8"?>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +01002<!--
3 ~ ============LICENSE_START=======================================================
4 ~ PNF-REGISTRATION-HANDLER
5 ~ ================================================================================
6 ~ Copyright (C) 2018-2019 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-->
Piotr Bochenski3c2766d2018-08-31 11:49:21 +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">
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>
pwielebs72aa0aa2019-02-06 10:49:41 +010029 <version>1.2.1-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>
pwielebs0386c752018-12-17 09:49:00 +010038 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
39 <artifactId>common-dependency</artifactId>
40 </dependency>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010041
wasala2a6eb942018-06-18 11:45:08 +020042 <dependency>
43 <groupId>org.slf4j</groupId>
44 <artifactId>log4j-over-slf4j</artifactId>
45 </dependency>
wasala4a1457c2018-09-11 09:50:21 +020046 <dependency>
47 <groupId>org.springframework</groupId>
48 <artifactId>spring-web</artifactId>
wasala4a1457c2018-09-11 09:50:21 +020049 </dependency>
Maciej Wejs8330d0e2018-11-06 12:07:12 +010050 <dependency>
51 <groupId>io.projectreactor.netty</groupId>
52 <artifactId>reactor-netty</artifactId>
53 </dependency>
micdzied8e8d8f72018-12-12 14:03:19 +010054 <dependency>
55 <groupId>org.immutables</groupId>
56 <artifactId>value</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.immutables</groupId>
60 <artifactId>gson</artifactId>
61 </dependency>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010062
micdzied8e8d8f72018-12-12 14:03:19 +010063 <dependency>
64 <groupId>org.junit.jupiter</groupId>
65 <artifactId>junit-jupiter-engine</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.mockito</groupId>
70 <artifactId>mockito-core</artifactId>
71 <scope>test</scope>
72 </dependency>
grabinskf34a9a02019-04-05 13:34:14 +020073 <dependency>
74 <groupId>org.assertj</groupId>
75 <artifactId>assertj-core</artifactId>
76 <scope>test</scope>
77 </dependency>
wasala2a6eb942018-06-18 11:45:08 +020078 </dependencies>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020079</project>