wasala | b80bcb8 | 2018-03-26 15:48:46 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 2 | <!-- |
| 3 | ~ ============LICENSE_START======================================================= |
wasala | 9292dd2 | 2018-03-28 19:04:20 +0200 | [diff] [blame] | 4 | ~ PNF-REGISTRATION-HANDLER |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 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 | --> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 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"> |
wasala | b80bcb8 | 2018-03-26 15:48:46 +0200 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.dcaegen2.services</groupId> |
| 28 | <artifactId>prh</artifactId> |
wasala | bb31441 | 2018-10-16 10:36:59 +0200 | [diff] [blame^] | 29 | <version>1.1.1-SNAPSHOT</version> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 30 | </parent> |
| 31 | |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 32 | <groupId>org.onap.dcaegen2.services.prh</groupId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 33 | <artifactId>prh-dmaap-client</artifactId> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 34 | <packaging>jar</packaging> |
wasala | b80bcb8 | 2018-03-26 15:48:46 +0200 | [diff] [blame] | 35 | |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 36 | <dependencies> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 37 | <dependency> |
| 38 | <groupId>org.immutables</groupId> |
| 39 | <artifactId>value</artifactId> |
| 40 | </dependency> |
wasala | 3c2e8c9 | 2018-04-12 13:37:41 +0200 | [diff] [blame] | 41 | <dependency> |
wasala | b196f93 | 2018-04-17 12:25:54 +0200 | [diff] [blame] | 42 | <groupId>org.immutables</groupId> |
| 43 | <artifactId>gson</artifactId> |
wasala | 3c2e8c9 | 2018-04-12 13:37:41 +0200 | [diff] [blame] | 44 | </dependency> |
wasala | 23f7acc | 2018-04-18 11:03:03 +0200 | [diff] [blame] | 45 | <dependency> |
wasala | 8b1502f | 2018-06-26 15:15:03 +0200 | [diff] [blame] | 46 | <groupId>org.springframework</groupId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 47 | <artifactId>spring-context</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.springframework</groupId> |
wasala | bb31441 | 2018-10-16 10:36:59 +0200 | [diff] [blame^] | 51 | <artifactId>spring-web</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.springframework</groupId> |
| 55 | <artifactId>spring-core</artifactId> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>io.projectreactor.netty</groupId> |
| 59 | <artifactId>reactor-netty</artifactId> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.springframework</groupId> |
wasala | 8b1502f | 2018-06-26 15:15:03 +0200 | [diff] [blame] | 63 | <artifactId>spring-webflux</artifactId> |
wasala | 8b1502f | 2018-06-26 15:15:03 +0200 | [diff] [blame] | 64 | </dependency> |
| 65 | <dependency> |
wasala | 79984d7 | 2018-06-27 14:29:06 +0200 | [diff] [blame] | 66 | <groupId>org.springframework.boot</groupId> |
| 67 | <artifactId>spring-boot-starter-reactor-netty</artifactId> |
wasala | 79984d7 | 2018-06-27 14:29:06 +0200 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
pwielebs | cb85d68 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 70 | <groupId>org.onap.dcaegen2.services.prh</groupId> |
| 71 | <artifactId>prh-commons</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 72 | <version>${project.version}</version> |
pwielebs | cb85d68 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 73 | </dependency> |
wasala | 23f7acc | 2018-04-18 11:03:03 +0200 | [diff] [blame] | 74 | |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 75 | <dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 76 | <groupId>ch.qos.logback</groupId> |
| 77 | <artifactId>logback-classic</artifactId> |
| 78 | </dependency> |
wasala | d8e4e88 | 2018-03-28 14:20:58 +0200 | [diff] [blame] | 79 | <dependency> |
| 80 | <groupId>org.slf4j</groupId> |
| 81 | <artifactId>jul-to-slf4j</artifactId> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.slf4j</groupId> |
| 85 | <artifactId>log4j-over-slf4j</artifactId> |
| 86 | </dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 87 | |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>org.junit.jupiter</groupId> |
| 90 | <artifactId>junit-jupiter-api</artifactId> |
| 91 | <scope>test</scope> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>junit</groupId> |
| 95 | <artifactId>junit</artifactId> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.junit.jupiter</groupId> |
| 100 | <artifactId>junit-jupiter-engine</artifactId> |
| 101 | <scope>test</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.junit.vintage</groupId> |
| 105 | <artifactId>junit-vintage-engine</artifactId> |
| 106 | <scope>test</scope> |
| 107 | </dependency> |
wasala | 86690cd | 2018-04-03 14:41:23 +0200 | [diff] [blame] | 108 | <dependency> |
pwielebs | a274374 | 2018-04-21 16:51:20 +0200 | [diff] [blame] | 109 | <groupId>org.mockito</groupId> |
| 110 | <artifactId>mockito-core</artifactId> |
| 111 | <scope>test</scope> |
| 112 | </dependency> |
wasala | 79984d7 | 2018-06-27 14:29:06 +0200 | [diff] [blame] | 113 | <dependency> |
| 114 | <groupId>io.projectreactor</groupId> |
| 115 | <artifactId>reactor-test</artifactId> |
| 116 | <scope>test</scope> |
| 117 | </dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 118 | </dependencies> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 119 | </project> |