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 | --> |
wasala | b80bcb8 | 2018-03-26 15:48:46 +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"> |
| 24 | <parent> |
| 25 | <artifactId>prh</artifactId> |
| 26 | <groupId>org.onap.dcaegen2.services</groupId> |
| 27 | <version>1.0.0-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | <modelVersion>4.0.0</modelVersion> |
| 30 | |
| 31 | <artifactId>prh-dmaap-client</artifactId> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 32 | <groupId>org.onap.dcaegen2.services.prh</groupId> |
| 33 | <packaging>jar</packaging> |
wasala | b80bcb8 | 2018-03-26 15:48:46 +0200 | [diff] [blame] | 34 | |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 35 | |
| 36 | <properties> |
| 37 | <main.basedir>${project.parent.basedir}</main.basedir> |
| 38 | </properties> |
| 39 | |
| 40 | <dependencies> |
| 41 | |
| 42 | <!-- DEVELOPMENT DEPENDENCIES --> |
| 43 | <dependency> |
| 44 | <groupId>org.immutables</groupId> |
| 45 | <artifactId>value</artifactId> |
| 46 | </dependency> |
wasala | 3c2e8c9 | 2018-04-12 13:37:41 +0200 | [diff] [blame] | 47 | <dependency> |
wasala | b196f93 | 2018-04-17 12:25:54 +0200 | [diff] [blame] | 48 | <groupId>org.immutables</groupId> |
| 49 | <artifactId>gson</artifactId> |
wasala | 3c2e8c9 | 2018-04-12 13:37:41 +0200 | [diff] [blame] | 50 | </dependency> |
wasala | 23f7acc | 2018-04-18 11:03:03 +0200 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>org.apache.httpcomponents</groupId> |
| 53 | <artifactId>httpclient</artifactId> |
| 54 | </dependency> |
| 55 | |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 56 | |
| 57 | <!-- LOGGING DEPENDENCIES --> |
| 58 | <dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 59 | <groupId>ch.qos.logback</groupId> |
| 60 | <artifactId>logback-classic</artifactId> |
| 61 | </dependency> |
wasala | d8e4e88 | 2018-03-28 14:20:58 +0200 | [diff] [blame] | 62 | <dependency> |
| 63 | <groupId>org.slf4j</groupId> |
| 64 | <artifactId>jul-to-slf4j</artifactId> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.slf4j</groupId> |
| 68 | <artifactId>log4j-over-slf4j</artifactId> |
| 69 | </dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 70 | |
| 71 | |
| 72 | <!-- TEST DEPENDENCIES--> |
| 73 | <dependency> |
| 74 | <groupId>org.junit.jupiter</groupId> |
| 75 | <artifactId>junit-jupiter-api</artifactId> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>junit</groupId> |
| 80 | <artifactId>junit</artifactId> |
| 81 | <scope>test</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.junit.jupiter</groupId> |
| 85 | <artifactId>junit-jupiter-engine</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.junit.vintage</groupId> |
| 90 | <artifactId>junit-vintage-engine</artifactId> |
| 91 | <scope>test</scope> |
| 92 | </dependency> |
wasala | 86690cd | 2018-04-03 14:41:23 +0200 | [diff] [blame] | 93 | <dependency> |
| 94 | <groupId>org.springframework</groupId> |
| 95 | <artifactId>spring-context</artifactId> |
wasala | 86690cd | 2018-04-03 14:41:23 +0200 | [diff] [blame] | 96 | </dependency> |
pwielebs | a274374 | 2018-04-21 16:51:20 +0200 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>org.mockito</groupId> |
| 99 | <artifactId>mockito-core</artifactId> |
| 100 | <scope>test</scope> |
| 101 | </dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 102 | </dependencies> |
wasala | b80bcb8 | 2018-03-26 15:48:46 +0200 | [diff] [blame] | 103 | </project> |