blob: aae9aaf52f077962bf81408a6e287cd3466c3f23 [file] [log] [blame]
Piotr Jaszczykb1e0ceb2019-05-08 14:52:24 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START====================================
4 ~ DCAEGEN2-SERVICES-SDK
5 ~ =========================================================
6 ~ Copyright (C) 2019 Nokia. 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 -->
21
22<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25
26 <modelVersion>4.0.0</modelVersion>
27
28 <parent>
29 <groupId>org.onap.dcaegen2.services.sdk</groupId>
30 <artifactId>dcaegen2-services-sdk-rest-services</artifactId>
Michal Banka81ee9a22020-07-27 10:58:16 +020031 <version>1.4.0-SNAPSHOT</version>
Piotr Jaszczykb1e0ceb2019-05-08 14:52:24 +020032 </parent>
33
34 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
35 <artifactId>http-client</artifactId>
36
37 <name>dcaegen2-services-sdk-rest-services-http-client</name>
38 <description>HTTP adapter</description>
39 <packaging>jar</packaging>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.onap.dcaegen2.services.sdk.security</groupId>
44 <artifactId>ssl</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47 <dependency>
Piotr Jaszczykb1e0ceb2019-05-08 14:52:24 +020048 <groupId>io.projectreactor.netty</groupId>
49 <artifactId>reactor-netty</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>io.vavr</groupId>
53 <artifactId>vavr</artifactId>
54 </dependency>
55 <dependency>
Piotr Jaszczyk3d6feef2019-06-03 14:20:40 +020056 <groupId>org.immutables</groupId>
57 <artifactId>value</artifactId>
58 </dependency>
59 <dependency>
Joanna Jeremicz19bb7112019-10-02 07:15:16 +020060 <groupId>org.immutables</groupId>
61 <artifactId>gson</artifactId>
62 </dependency>
63 <dependency>
Piotr Jaszczykb1e0ceb2019-05-08 14:52:24 +020064 <groupId>org.jetbrains</groupId>
65 <artifactId>annotations</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.slf4j</groupId>
69 <artifactId>slf4j-api</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.junit.jupiter</groupId>
73 <artifactId>junit-jupiter-engine</artifactId>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.mockito</groupId>
78 <artifactId>mockito-core</artifactId>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.assertj</groupId>
83 <artifactId>assertj-core</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>io.projectreactor</groupId>
87 <artifactId>reactor-test</artifactId>
88 <scope>test</scope>
89 </dependency>
90 </dependencies>
91</project>