blob: 91fd90825844d0be62944b495bbbe162261d12c0 [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>
Kasperkiewicz Pawelb4329622018-10-22 14:21:40 +020029 <version>1.2.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>
wasala2a6eb942018-06-18 11:45:08 +020046 <groupId>org.junit.jupiter</groupId>
47 <artifactId>junit-jupiter-api</artifactId>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.junit.jupiter</groupId>
52 <artifactId>junit-jupiter-engine</artifactId>
53 <scope>test</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.mockito</groupId>
57 <artifactId>mockito-core</artifactId>
58 <scope>test</scope>
59 </dependency>
pwielebs7ddaf392018-05-23 15:31:11 +020060
wasala2a6eb942018-06-18 11:45:08 +020061 <dependency>
62 <groupId>ch.qos.logback</groupId>
63 <artifactId>logback-classic</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.slf4j</groupId>
67 <artifactId>jul-to-slf4j</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.slf4j</groupId>
71 <artifactId>log4j-over-slf4j</artifactId>
72 </dependency>
wasala4a1457c2018-09-11 09:50:21 +020073 <dependency>
74 <groupId>org.springframework</groupId>
75 <artifactId>spring-web</artifactId>
wasala4a1457c2018-09-11 09:50:21 +020076 </dependency>
wasala2a6eb942018-06-18 11:45:08 +020077 </dependencies>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020078</project>