Piotr Jaszczyk | b1e0ceb | 2019-05-08 14:52:24 +0200 | [diff] [blame] | 1 | <?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> |
Piotr Marcinkiewicz | 4710dd7 | 2020-07-27 16:28:52 +0200 | [diff] [blame^] | 31 | <version>1.4.1-SNAPSHOT</version> |
Piotr Jaszczyk | b1e0ceb | 2019-05-08 14:52:24 +0200 | [diff] [blame] | 32 | </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 Jaszczyk | b1e0ceb | 2019-05-08 14:52:24 +0200 | [diff] [blame] | 48 | <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 Jaszczyk | 3d6feef | 2019-06-03 14:20:40 +0200 | [diff] [blame] | 56 | <groupId>org.immutables</groupId> |
| 57 | <artifactId>value</artifactId> |
| 58 | </dependency> |
| 59 | <dependency> |
Joanna Jeremicz | 19bb711 | 2019-10-02 07:15:16 +0200 | [diff] [blame] | 60 | <groupId>org.immutables</groupId> |
| 61 | <artifactId>gson</artifactId> |
| 62 | </dependency> |
| 63 | <dependency> |
Piotr Jaszczyk | b1e0ceb | 2019-05-08 14:52:24 +0200 | [diff] [blame] | 64 | <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> |
Piotr Marcinkiewicz | 4710dd7 | 2020-07-27 16:28:52 +0200 | [diff] [blame^] | 91 | </project> |