blob: ecccd7671be00016f31510125d7cc0604bb0756a [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>
9 <version>1.1.0-SNAPSHOT</version>
10 </parent>
11
12 <artifactId>ssl</artifactId>
13 <version>1.1.1-SNAPSHOT</version>
14
15 <name>SSL</name>
16 <description>Common SSL-related Classes Library</description>
17 <packaging>jar</packaging>
18
19 <dependencies>
20 <dependency>
21 <groupId>io.projectreactor.netty</groupId>
22 <artifactId>reactor-netty</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.immutables</groupId>
26 <artifactId>value</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>io.vavr</groupId>
30 <artifactId>vavr</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.jetbrains</groupId>
34 <artifactId>annotations</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.junit.jupiter</groupId>
38 <artifactId>junit-jupiter-engine</artifactId>
39 <scope>test</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.assertj</groupId>
43 <artifactId>assertj-core</artifactId>
44 <scope>test</scope>
45 </dependency>
46 </dependencies>
47
48</project>