blob: 1c2fb15bf78762868543f971728a13b862e73bcf [file] [log] [blame]
Jakub Dudycz1442bff2019-01-30 15:58:36 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>org.onap.dcaegen2.services.sdk.security</groupId>
8 <artifactId>dcaegen2-services-sdk-security</artifactId>
Michal Banka81ee9a22020-07-27 10:58:16 +02009 <version>1.4.0-SNAPSHOT</version>
Jakub Dudycz1442bff2019-01-30 15:58:36 +010010 </parent>
11
12 <artifactId>ssl</artifactId>
Jakub Dudycz1442bff2019-01-30 15:58:36 +010013
Piotr Jaszczyk6b50f212019-02-04 14:53:57 +010014 <name>Security :: SSL</name>
15 <description>Common functionality to handle SSL/TLS in Netty-based applications</description>
Jakub Dudycz1442bff2019-01-30 15:58:36 +010016 <packaging>jar</packaging>
17
18 <dependencies>
19 <dependency>
20 <groupId>io.projectreactor.netty</groupId>
21 <artifactId>reactor-netty</artifactId>
22 </dependency>
23 <dependency>
24 <groupId>org.immutables</groupId>
25 <artifactId>value</artifactId>
26 </dependency>
27 <dependency>
28 <groupId>io.vavr</groupId>
29 <artifactId>vavr</artifactId>
30 </dependency>
31 <dependency>
32 <groupId>org.jetbrains</groupId>
33 <artifactId>annotations</artifactId>
34 </dependency>
35 <dependency>
36 <groupId>org.junit.jupiter</groupId>
37 <artifactId>junit-jupiter-engine</artifactId>
38 <scope>test</scope>
39 </dependency>
40 <dependency>
41 <groupId>org.assertj</groupId>
42 <artifactId>assertj-core</artifactId>
43 <scope>test</scope>
44 </dependency>
45 </dependencies>
46
47</project>