Jakub Dudycz | 1442bff | 2019-01-30 15:58:36 +0100 | [diff] [blame] | 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> |
Piotr Marcinkiewicz | 37dd372 | 2020-08-18 09:16:01 +0200 | [diff] [blame] | 9 | <version>1.4.2-SNAPSHOT</version> |
Jakub Dudycz | 1442bff | 2019-01-30 15:58:36 +0100 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <artifactId>ssl</artifactId> |
Jakub Dudycz | 1442bff | 2019-01-30 15:58:36 +0100 | [diff] [blame] | 13 | |
Piotr Jaszczyk | 6b50f21 | 2019-02-04 14:53:57 +0100 | [diff] [blame] | 14 | <name>Security :: SSL</name> |
| 15 | <description>Common functionality to handle SSL/TLS in Netty-based applications</description> |
Jakub Dudycz | 1442bff | 2019-01-30 15:58:36 +0100 | [diff] [blame] | 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 | |
Piotr Marcinkiewicz | 4710dd7 | 2020-07-27 16:28:52 +0200 | [diff] [blame] | 47 | </project> |