blob: 3f55154249db642bcd8e13f7751f2bf814d2decd [file] [log] [blame]
elinuxhenrikd661dbc2018-08-17 12:34:58 +02001<?xml version="1.0" encoding="UTF-8"?>
elinuxhenrikf3945942018-09-14 15:49:10 +02002<!--
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 -->
elinuxhenrikd661dbc2018-08-17 12:34:58 +020019<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>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020025 <groupId>org.onap.dcaegen2.collectors</groupId>
elinuxhenrikf3945942018-09-14 15:49:10 +020026 <artifactId>datafile</artifactId>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020027 <version>1.0.0-SNAPSHOT</version>
28 </parent>
29
elinuxhenrikd661dbc2018-08-17 12:34:58 +020030 <groupId>org.onap.dcaegen2.collectors.datafile</groupId>
elinuxhenrikf3945942018-09-14 15:49:10 +020031 <artifactId>datafile-commons</artifactId>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020032 <packaging>jar</packaging>
33
34 <properties>
35 <main.basedir>${project.parent.basedir}</main.basedir>
36 </properties>
elinuxhenrikf3945942018-09-14 15:49:10 +020037
elinuxhenrikd661dbc2018-08-17 12:34:58 +020038 <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
elinuxhenrikf3945942018-09-14 15:49:10 +020056 <!-- TEST DEPENDENCIES -->
elinuxhenrikd661dbc2018-08-17 12:34:58 +020057 <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
elinuxhenrikf3945942018-09-14 15:49:10 +020073 <!-- LOGGING DEPENDENCIES -->
elinuxhenrikd661dbc2018-08-17 12:34:58 +020074 <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>
elinuxhenrikf3945942018-09-14 15:49:10 +020087</project>