pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame^] | 2 | <!-- |
| 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"> |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 25 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 26 | <parent> |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 27 | <groupId>org.onap.dcaegen2.services</groupId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame^] | 28 | <artifactId>prh</artifactId> |
pwielebs | cb85d68 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 29 | <version>1.0.0-SNAPSHOT</version> |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 30 | </parent> |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 31 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +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-commons</artifactId> |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 34 | <packaging>jar</packaging> |
pwielebs | cb85d68 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 35 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 36 | <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> |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 53 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 54 | <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> |
pwielebs | 7ddaf39 | 2018-05-23 15:31:11 +0200 | [diff] [blame] | 69 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 70 | <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 Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame^] | 83 | </project> |