
As of Spring Framework 5.1, we're depending on the Reactor Californium release train. Reactor Netty is now at version 0.8 and changed its artifact coordinates, package names and broke several APIs. Spring Framework is now up-to-date with those changes and this commit does the same for Spring Boot. Note that in that process, the `NettyServerCustomizer` has been changed since the former `HttpServerOptions.Builder` API is now gone from Reactor Netty, and we're now relying on immutable server instances instead of a stateful builder pattern. See gh-13321
23 lines
878 B
XML
23 lines
878 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starters</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<artifactId>spring-boot-starter-reactor-netty</artifactId>
|
|
<name>Spring Boot Reactor Netty Starter</name>
|
|
<description>Starter for using Reactor Netty as the embedded reactive HTTP server.</description>
|
|
<properties>
|
|
<main.basedir>${basedir}/../../..</main.basedir>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.projectreactor.netty</groupId>
|
|
<artifactId>reactor-netty</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|