elinuxhenrik | d661dbc | 2018-08-17 12:34:58 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
elinuxhenrik | f394594 | 2018-09-14 15:49:10 +0200 | [diff] [blame^] | 2 | <!-- |
| 3 | ~ ============LICENSE_START======================================================= |
| 4 | ~ Copyright (C) 2018 NOKIA Intellectual Property, 2018 Nordix Foundation. All rights reserved. |
| 5 | ~ ================================================================================ |
| 6 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | ~ you may not use this file except in compliance with the License. |
| 8 | ~ You may obtain a copy of the License at |
| 9 | ~ |
| 10 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ~ |
| 12 | ~ Unless required by applicable law or agreed to in writing, software |
| 13 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | ~ See the License for the specific language governing permissions and |
| 16 | ~ limitations under the License. |
| 17 | ~ ============LICENSE_END========================================================= |
| 18 | --> |
elinuxhenrik | d661dbc | 2018-08-17 12:34:58 +0200 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 20 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
elinuxhenrik | d661dbc | 2018-08-17 12:34:58 +0200 | [diff] [blame] | 25 | <groupId>org.onap.dcaegen2.collectors</groupId> |
elinuxhenrik | f394594 | 2018-09-14 15:49:10 +0200 | [diff] [blame^] | 26 | <artifactId>datafile</artifactId> |
elinuxhenrik | d661dbc | 2018-08-17 12:34:58 +0200 | [diff] [blame] | 27 | <version>1.0.0-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | |
elinuxhenrik | d661dbc | 2018-08-17 12:34:58 +0200 | [diff] [blame] | 30 | <groupId>org.onap.dcaegen2.collectors.datafile</groupId> |
elinuxhenrik | f394594 | 2018-09-14 15:49:10 +0200 | [diff] [blame^] | 31 | <artifactId>datafile-commons</artifactId> |
elinuxhenrik | d661dbc | 2018-08-17 12:34:58 +0200 | [diff] [blame] | 32 | <packaging>jar</packaging> |
| 33 | |
| 34 | <properties> |
| 35 | <main.basedir>${project.parent.basedir}</main.basedir> |
| 36 | </properties> |
elinuxhenrik | f394594 | 2018-09-14 15:49:10 +0200 | [diff] [blame^] | 37 | |
elinuxhenrik | d661dbc | 2018-08-17 12:34:58 +0200 | [diff] [blame] | 38 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>org.immutables</groupId> |
| 41 | <artifactId>value</artifactId> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.immutables</groupId> |
| 45 | <artifactId>gson</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.apache.httpcomponents</groupId> |
| 49 | <artifactId>httpclient</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.apache.commons</groupId> |
| 53 | <artifactId>commons-lang3</artifactId> |
| 54 | </dependency> |
| 55 | |
elinuxhenrik | f394594 | 2018-09-14 15:49:10 +0200 | [diff] [blame^] | 56 | <!-- TEST DEPENDENCIES --> |
elinuxhenrik | d661dbc | 2018-08-17 12:34:58 +0200 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>org.junit.jupiter</groupId> |
| 59 | <artifactId>junit-jupiter-api</artifactId> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.junit.jupiter</groupId> |
| 64 | <artifactId>junit-jupiter-engine</artifactId> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.mockito</groupId> |
| 69 | <artifactId>mockito-core</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | |
elinuxhenrik | f394594 | 2018-09-14 15:49:10 +0200 | [diff] [blame^] | 73 | <!-- LOGGING DEPENDENCIES --> |
elinuxhenrik | d661dbc | 2018-08-17 12:34:58 +0200 | [diff] [blame] | 74 | <dependency> |
| 75 | <groupId>ch.qos.logback</groupId> |
| 76 | <artifactId>logback-classic</artifactId> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.slf4j</groupId> |
| 80 | <artifactId>jul-to-slf4j</artifactId> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.slf4j</groupId> |
| 84 | <artifactId>log4j-over-slf4j</artifactId> |
| 85 | </dependency> |
| 86 | </dependencies> |
elinuxhenrik | f394594 | 2018-09-14 15:49:10 +0200 | [diff] [blame^] | 87 | </project> |