blob: d018ff7986d4a248fa8b659a1b88031a3a3bffd4 [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
elinuxhenrikd661dbc2018-08-17 12:34:58 +020034 <dependencies>
35 <dependency>
36 <groupId>org.immutables</groupId>
37 <artifactId>value</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.immutables</groupId>
41 <artifactId>gson</artifactId>
42 </dependency>
43 <dependency>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020044 <groupId>org.junit.jupiter</groupId>
45 <artifactId>junit-jupiter-api</artifactId>
46 <scope>test</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.junit.jupiter</groupId>
50 <artifactId>junit-jupiter-engine</artifactId>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.mockito</groupId>
55 <artifactId>mockito-core</artifactId>
56 <scope>test</scope>
57 </dependency>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020058 <dependency>
59 <groupId>ch.qos.logback</groupId>
60 <artifactId>logback-classic</artifactId>
61 </dependency>
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>
wasala93adeb42018-09-18 14:17:19 +020070 <dependency>
71 <groupId>org.springframework</groupId>
72 <artifactId>spring-web</artifactId>
73 <version>5.0.5.RELEASE</version>
74 </dependency>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020075 </dependencies>
elinuxhenrikf3945942018-09-14 15:49:10 +020076</project>