rsocket-transport-netty
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.rsocket</groupId> <artifactId>rsocket-transport-netty</artifactId> <version>1.1.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.rsocket</groupId> <artifactId>rsocket-transport-netty</artifactId> <version>1.1.5</version> <name>rsocket-transport-netty</name> <description>Reactor Netty RSocket transport implementations (TCP, Websocket)</description> <url>http://rsocket.io</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>OlegDokuka</id> <name>Oleh Dokuka</name> <email>oleh.dokuka@icloud.com</email> </developer> <developer> <id>rstoyanchev</id> <name>Rossen Stoyanchev</name> <email>rstoyanchev@vmware.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/rsocket/rsocket-java.git</connection> <developerConnection>scm:git:https://github.com/rsocket/rsocket-java.git</developerConnection> <url>https://github.com/rsocket/rsocket-java</url> </scm> <dependencies> <dependency> <groupId>io.rsocket</groupId> <artifactId>rsocket-core</artifactId> <version>1.1.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.projectreactor.netty</groupId> <artifactId>reactor-netty-core</artifactId> <version>1.0.48</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.projectreactor.netty</groupId> <artifactId>reactor-netty-http</artifactId> <version>1.0.48</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> <scope>compile</scope> </dependency> </dependencies> </project>