You can download reactor-netty-0.5.1.release.jar in this page.
The Apache Software License, Version 2.0
reactor-netty-0.5.1.release.jar file has the following types.
META-INF/MANIFEST.MF reactor.ipc.netty.common.ByteBufEncodedFlux.class reactor.ipc.netty.common.ByteBufEncodedMono.class reactor.ipc.netty.common.ChannelBridge.class reactor.ipc.netty.common.ColocatedEventLoopGroup.class reactor.ipc.netty.common.DuplexSocket.class reactor.ipc.netty.common.MonoChannelFuture.class reactor.ipc.netty.common.NettyChannel.class reactor.ipc.netty.common.NettyChannelHandler.class reactor.ipc.netty.common.NettyCodec.class reactor.ipc.netty.common.NettyHandlerNames.class reactor.ipc.netty.common.NettyInbound.class reactor.ipc.netty.common.NettyOutbound.class reactor.ipc.netty.common.ReleasingBufferInputStream.class reactor.ipc.netty.config.ClientOptions.class reactor.ipc.netty.config.HttpClientOptions.class reactor.ipc.netty.config.NettyOptions.class reactor.ipc.netty.config.ServerOptions.class reactor.ipc.netty.http.Cookies.class reactor.ipc.netty.http.HttpChannel.class reactor.ipc.netty.http.HttpClient.class reactor.ipc.netty.http.HttpClientChannel.class reactor.ipc.netty.http.HttpClientRequest.class reactor.ipc.netty.http.HttpClientResponse.class reactor.ipc.netty.http.HttpConnection.class reactor.ipc.netty.http.HttpException.class reactor.ipc.netty.http.HttpInbound.class reactor.ipc.netty.http.HttpMappings.class reactor.ipc.netty.http.HttpOutbound.class reactor.ipc.netty.http.HttpServer.class reactor.ipc.netty.http.HttpServerChannel.class reactor.ipc.netty.http.MonoHttpClientChannel.class reactor.ipc.netty.http.MultipartInbound.class reactor.ipc.netty.http.NettyHttpChannel.class reactor.ipc.netty.http.NettyHttpClientHandler.class reactor.ipc.netty.http.NettyHttpServerHandler.class reactor.ipc.netty.http.NettyWebSocketClientHandler.class reactor.ipc.netty.http.NettyWebSocketServerHandler.class reactor.ipc.netty.http.ReconnectableBridge.class reactor.ipc.netty.http.RedirectException.class reactor.ipc.netty.http.RegistryHttpMappings.class reactor.ipc.netty.http.multipart.MultipartCodec.class reactor.ipc.netty.http.multipart.MultipartDecoder.class reactor.ipc.netty.http.multipart.MultipartParser.class reactor.ipc.netty.http.multipart.MultipartTokenizer.class reactor.ipc.netty.nexus.Nexus.class reactor.ipc.netty.tcp.NettySslReader.class reactor.ipc.netty.tcp.TcpChannel.class reactor.ipc.netty.tcp.TcpClient.class reactor.ipc.netty.tcp.TcpServer.class reactor.ipc.netty.udp.UdpServer.class reactor.ipc.netty.util.EpollDetector.class reactor.ipc.netty.util.NettyNativeDetector.class reactor.ipc.netty.util.SocketUtils.class
reactor-netty-0.5.1.release.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.projectreactor.ipc</groupId> <artifactId>reactor-netty</artifactId> <version>0.5.1.RELEASE</version> <name>Reactive Streams Netty driver</name> <description>Reactive Streams Netty driver</description> <url>https://github.com/reactor/reactor</url> <organization> <name>reactor</name> <url>http://github.com/reactor</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>smaldini</id> <name>Stephane Maldini</name> <email>smaldini@pivotal.io</email> </developer> <developer> <id>kadyana</id> <name>Anatoly Kadyshev</name> </developer> </developers> <scm> <connection>scm:git:git://github.com/reactor/reactor-ipc</connection> <developerConnection>scm:git:git://github.com/reactor/reactor-ipc</developerConnection> <url>https://github.com/reactor/reactor-ipc</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/reactor/reactor/issues</url> </issueManagement> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.0</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.3.Final</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.projectreactor.addons</groupId> <artifactId>reactor-bus</artifactId> <version>0.6.0.BUILD-SNAPSHOT</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>io.projectreactor.addons</groupId> <artifactId>reactor-codec</artifactId> <version>0.6.0.BUILD-SNAPSHOT</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>io.projectreactor.ipc</groupId> <artifactId>reactor-ipc</artifactId> <version>0.5.1.RELEASE</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>3.0.1.RELEASE</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.12</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> </dependencies> </project>
<dependency> <groupId>io.projectreactor.ipc</groupId> <artifactId>reactor-netty</artifactId> <version>0.5.1.release</version> </dependency>
If you think the following reactor-netty-0.5.1.release.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download reactor-netty-0.5.1.release.jar file