From 66dc7280184bc96e0b1561d83174384a7a2a8e2c Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 20 May 2019 10:38:15 +0200 Subject: [PATCH] Polish "Make excludeDevtools available as a user property" Closes gh-16701 --- .../main/java/org/springframework/boot/maven/RepackageMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/RepackageMojo.java b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/RepackageMojo.java index 42f138a5c0b..f08f374262c 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/RepackageMojo.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/RepackageMojo.java @@ -193,7 +193,7 @@ public class RepackageMojo extends AbstractDependencyFilterMojo { * Exclude Spring Boot devtools from the repackaged archive. * @since 1.3 */ - @Parameter(property = "spring-boot.excludeDevtools", defaultValue = "true") + @Parameter(property = "spring-boot.repackage.excludeDevtools", defaultValue = "true") private boolean excludeDevtools = true; /**