Fix SDK Vulnerabilities
[dcaegen2/services/sdk.git] / security / ssl / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 Copyright (c) 2022 Nokia. All rights reserved.
4 ================================================================================
5 Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 use this file except in compliance with the License. You may obtain a copy
7 of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
8 by applicable law or agreed to in writing, software distributed under the
9 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
10 OF ANY KIND, either express or implied. See the License for the specific
11 language governing permissions and limitations under the License.
12 ============LICENSE_END=========================================================
13 -->
14 <project xmlns="http://maven.apache.org/POM/4.0.0"
15   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
17   <modelVersion>4.0.0</modelVersion>
18
19   <parent>
20     <groupId>org.onap.dcaegen2.services.sdk.security</groupId>
21     <artifactId>dcaegen2-services-sdk-security</artifactId>
22     <version>${revision}</version>
23   </parent>
24
25   <artifactId>ssl</artifactId>
26
27   <name>Security :: SSL</name>
28   <description>Common functionality to handle SSL/TLS in Netty-based applications</description>
29   <packaging>jar</packaging>
30
31   <dependencies>
32     <dependency>
33       <groupId>io.projectreactor.netty</groupId>
34       <artifactId>reactor-netty</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.immutables</groupId>
38       <artifactId>value</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>io.vavr</groupId>
42       <artifactId>vavr</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.jetbrains</groupId>
46       <artifactId>annotations</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.junit.jupiter</groupId>
50       <artifactId>junit-jupiter-engine</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.assertj</groupId>
55       <artifactId>assertj-core</artifactId>
56       <scope>test</scope>
57     </dependency>
58   </dependencies>
59
60 </project>