blob: 6d813c854bacc2c44d1ccaf55f718c71136639a7 [file] [log] [blame]
elinuxhenrikd661dbc2018-08-17 12:34:58 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
elinuxhenrikf3945942018-09-14 15:49:10 +02004 ~ Copyright (C) 2018 NOKIA Intellectual Property, 2018 Nordix Foundation. All rights reserved.
elinuxhenrikd661dbc2018-08-17 12:34:58 +02005 ~ ================================================================================
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 ~
elinuxhenrikf3945942018-09-14 15:49:10 +020010 ~ http://www.apache.org/licenses/LICENSE-2.0
elinuxhenrikd661dbc2018-08-17 12:34:58 +020011 ~
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 -->
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">
Vijay Venkatesh Kumar0ae7a7f2018-10-05 14:14:00 +020022 <modelVersion>4.0.0</modelVersion>
23
elinuxhenrikd661dbc2018-08-17 12:34:58 +020024 <parent>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020025 <groupId>org.onap.dcaegen2.collectors</groupId>
elinuxhenrikf3945942018-09-14 15:49:10 +020026 <artifactId>datafile</artifactId>
maximesson186da072018-12-03 16:03:45 +010027 <version>1.1.1-SNAPSHOT</version>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020028 </parent>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020029
elinuxhenrikd661dbc2018-08-17 12:34:58 +020030 <groupId>org.onap.dcaegen2.collectors.datafile</groupId>
elinuxhenrikf3945942018-09-14 15:49:10 +020031 <artifactId>datafile-dmaap-client</artifactId>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020032 <packaging>jar</packaging>
33
34
35 <properties>
36 <main.basedir>${project.parent.basedir}</main.basedir>
37 </properties>
elinuxhenrikf3945942018-09-14 15:49:10 +020038
elinuxhenrikd661dbc2018-08-17 12:34:58 +020039 <dependencies>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020040 <!-- DEVELOPMENT DEPENDENCIES -->
41 <dependency>
Chengkai Yan693026c2018-11-23 16:23:56 +010042 <groupId>org.asynchttpclient</groupId>
43 <artifactId>async-http-client</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.httpcomponents</groupId>
47 <artifactId>httpasyncclient</artifactId>
48 </dependency>
49 <dependency>
Vijay Venkatesh Kumar0ae7a7f2018-10-05 14:14:00 +020050 <groupId>org.onap.dcaegen2.collectors.datafile</groupId>
51 <artifactId>datafile-commons</artifactId>
52 <version>${project.parent.version}</version>
53 </dependency>
54 <dependency>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020055 <groupId>org.immutables</groupId>
56 <artifactId>value</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.immutables</groupId>
60 <artifactId>gson</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.springframework</groupId>
64 <artifactId>spring-webflux</artifactId>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020065 </dependency>
66 <dependency>
wasala93adeb42018-09-18 14:17:19 +020067 <groupId>org.springframework</groupId>
68 <artifactId>spring-context</artifactId>
elinuxhenrikf3945942018-09-14 15:49:10 +020069 </dependency>
70 <dependency>
71 <groupId>org.apache.httpcomponents</groupId>
72 <artifactId>httpclient</artifactId>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020073 </dependency>
74 <dependency>
wasala93adeb42018-09-18 14:17:19 +020075 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-starter-reactor-netty</artifactId>
77 </dependency>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020078 <dependency>
elinuxhenrik18f56932018-10-01 16:51:05 +020079 <groupId>commons-io</groupId>
80 <artifactId>commons-io</artifactId>
81 </dependency>
82 <dependency>
Vijay Venkatesh Kumar0ae7a7f2018-10-05 14:14:00 +020083 <groupId>com.jcraft</groupId>
84 <artifactId>jsch</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>commons-net</groupId>
88 <artifactId>commons-net</artifactId>
89 </dependency>
90 <dependency>
elinuxhenrikd661dbc2018-08-17 12:34:58 +020091 <groupId>org.junit.jupiter</groupId>
92 <artifactId>junit-jupiter-api</artifactId>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>junit</groupId>
97 <artifactId>junit</artifactId>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.junit.jupiter</groupId>
102 <artifactId>junit-jupiter-engine</artifactId>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.junit.vintage</groupId>
107 <artifactId>junit-vintage-engine</artifactId>
108 <scope>test</scope>
109 </dependency>
110 <dependency>
elinuxhenrikd661dbc2018-08-17 12:34:58 +0200111 <groupId>org.mockito</groupId>
112 <artifactId>mockito-core</artifactId>
113 <scope>test</scope>
114 </dependency>
elinuxhenrikf3945942018-09-14 15:49:10 +0200115
116 <!-- https://mvnrepository.com/artifact/org.junit.platform/junit-platform-launcher -->
117 <dependency>
118 <groupId>org.junit.platform</groupId>
119 <artifactId>junit-platform-launcher</artifactId>
120 <scope>test</scope>
121 </dependency>
122 <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
123 <dependency>
124 <groupId>org.apache.httpcomponents</groupId>
125 <artifactId>httpmime</artifactId>
126 </dependency>
elinuxhenrikd661dbc2018-08-17 12:34:58 +0200127 <dependency>
128 <groupId>io.projectreactor</groupId>
129 <artifactId>reactor-test</artifactId>
130 <scope>test</scope>
131 </dependency>
elinuxhenrikf3945942018-09-14 15:49:10 +0200132 <dependency>
Vijay Venkatesh Kumar0ae7a7f2018-10-05 14:14:00 +0200133 <groupId>com.github.stefanbirkner</groupId>
134 <artifactId>fake-sftp-server-rule</artifactId>
135 <scope>test</scope>
136 </dependency>
137 <dependency>
138 <groupId>org.springframework.boot</groupId>
139 <artifactId>spring-boot-starter-test</artifactId>
140 <scope>test</scope>
141 </dependency>
142 <dependency>
elinuxhenrikf3945942018-09-14 15:49:10 +0200143 <groupId>com.google.code.findbugs</groupId>
144 <artifactId>jsr305</artifactId>
145 <version>2.0.1</version>
146 </dependency>
elinuxhenrikd661dbc2018-08-17 12:34:58 +0200147 </dependencies>
elinuxhenrikf3945942018-09-14 15:49:10 +0200148</project>