33 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2022-03-13 14:48:44 +05:30
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>netty</artifactId>
<name>netty</name>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>server-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
2022-03-13 14:48:44 +05:30
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
</dependency>
2022-03-13 14:48:44 +05:30
<dependency>
<groupId>org.conscrypt</groupId>
<artifactId>conscrypt-openjdk-uber</artifactId>
2022-01-17 14:03:32 +01:00
<version>${conscrypt-openjdk-uber.version}</version>
</dependency>
</dependencies>
<properties>
<netty.version>4.1.48.Final</netty.version>
2022-01-17 14:03:32 +01:00
<conscrypt-openjdk-uber.version>2.4.0</conscrypt-openjdk-uber.version>
</properties>
</project>