diff --git a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/docs/asciidoc/using.adoc b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/docs/asciidoc/using.adoc index 330a076d8ba7..12148701d699 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/docs/asciidoc/using.adoc +++ b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/docs/asciidoc/using.adoc @@ -105,6 +105,21 @@ For instance, to use a different version of the SLF4J library and the Spring Dat ---- +[[failsafe-plugin]] +=== Using Maven Failsafe Plugin without the Spring Boot Parent POM +When using the Failsafe plugin, the Spring Boot Parent POM by default configures the `` to be `${project.build.outputDirectory}`. +This configures Failsafe to use the compiled classes rather than the repackaged jar as such: + +[source,xml,indent=0] +---- + + org.apache.maven.plugins + maven-failsafe-plugin + + ${project.build.outputDirectory} + + +---- [[using-overriding-command-line]]