ff6f61b14006915e4b17ca001fc6da3c7e6c7d26
[dcaegen2/services/sdk.git] / security / ssl / pom.xml
1 <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>
9     <version>1.8.4-SNAPSHOT</version>
10   </parent>
11
12   <artifactId>ssl</artifactId>
13
14   <name>Security :: SSL</name>
15   <description>Common functionality to handle SSL/TLS in Netty-based applications</description>
16   <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>