diff --git a/spring-boot-docs/pom.xml b/spring-boot-docs/pom.xml
index 6c5b44b260b..0d3ebe60737 100644
--- a/spring-boot-docs/pom.xml
+++ b/spring-boot-docs/pom.xml
@@ -85,6 +85,11 @@
jackson-dataformat-xml
true
+
+ com.fasterxml.jackson.module
+ jackson-module-parameter-names
+ true
+
com.github.ben-manes.caffeine
caffeine
@@ -110,6 +115,11 @@
hazelcast-spring
true
+
+ com.h2database
+ h2
+ true
+
com.samskivert
jmustache
@@ -136,13 +146,8 @@
true
- org.apache.commons
- commons-pool2
- true
-
-
- org.assertj
- assertj-core
+ de.flapdoodle.embed
+ de.flapdoodle.embed.mongo
true
@@ -182,6 +187,11 @@
+
+ javax.cache
+ cache-api
+ true
+
javax.jms
jms-api
@@ -237,6 +247,16 @@
activemq-pool
true
+
+ org.apache.commons
+ commons-pool2
+ true
+
+
+ org.apache.commons
+ commons-dbcp2
+ true
+
org.apache.logging.log4j
log4j-api
@@ -282,6 +302,11 @@
velocity-tools
true
+
+ org.assertj
+ assertj-core
+ true
+
org.codehaus.btm
btm
@@ -343,11 +368,21 @@
flyway-core
true
+
+ org.freemarker
+ freemarker
+ true
+
org.glassfish.jersey.containers
jersey-container-servlet-core
true
+
+ org.glassfish.jersey.media
+ jersey-media-json-jackson
+ true
+
org.jboss
jboss-transaction-spi
@@ -378,6 +413,11 @@
narayana-jts-integration
true
+
+ org.jooq
+ jooq
+ true
+
org.hibernate
hibernate-entitymanager
@@ -463,6 +503,11 @@
spring-webmvc
true
+
+ org.springframework
+ spring-websocket
+ true
+
org.springframework.amqp
spring-rabbit
@@ -579,8 +624,8 @@
true
- org.springframework.security.oauth
- spring-security-oauth2
+ org.springframework.security
+ spring-security-data
true
@@ -588,11 +633,21 @@
spring-security-web
true
+
+ org.springframework.security.oauth
+ spring-security-oauth2
+ true
+
org.springframework.social
spring-social-config
true
+
+ org.springframework.ws
+ spring-ws-core
+ true
+
org.thymeleaf
thymeleaf-spring4
@@ -608,6 +663,11 @@
thymeleaf-extras-data-attribute
true
+
+ org.thymeleaf.extras
+ thymeleaf-extras-java8time
+ true
+
org.thymeleaf.extras
thymeleaf-extras-springsecurity4
diff --git a/spring-boot/src/main/java/org/springframework/boot/context/embedded/undertow/UndertowEmbeddedServletContainer.java b/spring-boot/src/main/java/org/springframework/boot/context/embedded/undertow/UndertowEmbeddedServletContainer.java
index 28233a4467a..9930a95060c 100644
--- a/spring-boot/src/main/java/org/springframework/boot/context/embedded/undertow/UndertowEmbeddedServletContainer.java
+++ b/spring-boot/src/main/java/org/springframework/boot/context/embedded/undertow/UndertowEmbeddedServletContainer.java
@@ -97,7 +97,7 @@ public class UndertowEmbeddedServletContainer implements EmbeddedServletContaine
* @param autoStart if the server should be started
* @param compression compression configuration
* @deprecated as of 1.4 in favor of
- * {@link #UndertowEmbeddedServletContainer(Builder, DeploymentManager, String, boolean, Compression)}
+ * {@link #UndertowEmbeddedServletContainer(Undertow.Builder, DeploymentManager, String, boolean, Compression)}
*/
@Deprecated
public UndertowEmbeddedServletContainer(Builder builder, DeploymentManager manager,
@@ -115,7 +115,7 @@ public class UndertowEmbeddedServletContainer implements EmbeddedServletContaine
* @param autoStart if the server should be started
* @param compression compression configuration
* @deprecated as of 1.4 in favor of
- * {@link #UndertowEmbeddedServletContainer(Builder, DeploymentManager, String, boolean, boolean, Compression)}
+ * {@link #UndertowEmbeddedServletContainer(Undertow.Builder, DeploymentManager, String, boolean, boolean, Compression)}
*/
@Deprecated
public UndertowEmbeddedServletContainer(Builder builder, DeploymentManager manager,
@@ -135,7 +135,7 @@ public class UndertowEmbeddedServletContainer implements EmbeddedServletContaine
* @param compression compression configuration
* @param serverHeader string to be used in HTTP header
* @deprecated as of 1.4 in favor of
- * {@link #UndertowEmbeddedServletContainer(Builder, DeploymentManager, String, boolean, boolean, Compression, String)}
+ * {@link #UndertowEmbeddedServletContainer(Undertow.Builder, DeploymentManager, String, boolean, boolean, Compression, String)}
*/
@Deprecated
public UndertowEmbeddedServletContainer(Builder builder, DeploymentManager manager,