diff --git a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
index dcec82c9aa..c83447664f 100644
--- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
+++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
@@ -1173,5 +1173,6 @@ content into your application; rather pick only the properties that you need.
# ----------------------------------------
spring.test.database.replace=any # Type of existing DataSource to replace.
+ spring.test.mockmvc.print=default # MVC Print option.
----
diff --git a/spring-boot-test-autoconfigure/pom.xml b/spring-boot-test-autoconfigure/pom.xml
index d448da8ff0..7233424a5e 100644
--- a/spring-boot-test-autoconfigure/pom.xml
+++ b/spring-boot-test-autoconfigure/pom.xml
@@ -121,12 +121,6 @@
spring-security-test
true
-
-
- org.springframework.boot
- spring-boot-configuration-processor
- true
-
org.springframework.boot
diff --git a/spring-boot-test-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/spring-boot-test-autoconfigure/src/main/resources/META-INF/spring-configuration-metadata.json
similarity index 55%
rename from spring-boot-test-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json
rename to spring-boot-test-autoconfigure/src/main/resources/META-INF/spring-configuration-metadata.json
index 309ca1ae3f..aae714fa7a 100644
--- a/spring-boot-test-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json
+++ b/spring-boot-test-autoconfigure/src/main/resources/META-INF/spring-configuration-metadata.json
@@ -5,6 +5,12 @@
"type": "org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase$Replace",
"description": "Type of existing DataSource to replace.",
"defaultValue": "any"
+ },
+ {
+ "name": "spring.test.mockmvc.print",
+ "type": "org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrint",
+ "description": "MVC Print option.",
+ "defaultValue": "default"
}
]
}
\ No newline at end of file