Browse Source

Add missing dependency in docs generation

Reactor Netty and Spring WebFlux were missing.
pull/8410/head
Brian Clozel 9 years ago
parent
commit
d1eafa29da
  1. 10
      spring-boot-docs/pom.xml

10
spring-boot-docs/pom.xml

@ -172,6 +172,11 @@ @@ -172,6 +172,11 @@
<artifactId>metrics-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.projectreactor.ipc</groupId>
<artifactId>reactor-netty</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-servlet</artifactId>
@ -538,6 +543,11 @@ @@ -538,6 +543,11 @@
<artifactId>spring-web</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webfux</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>

Loading…
Cancel
Save