Browse Source

Merge branch '2.6.x' into 2.7.x

Closes gh-33084
pull/33648/head
Andy Wilkinson 3 years ago
parent
commit
b1494d4a39
  1. 5
      spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/MavenBuild.java

5
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/MavenBuild.java

@ -45,6 +45,8 @@ import org.apache.maven.shared.invoker.InvocationResult; @@ -45,6 +45,8 @@ import org.apache.maven.shared.invoker.InvocationResult;
import org.apache.maven.shared.invoker.Invoker;
import org.apache.maven.shared.invoker.MavenInvocationException;
import org.springframework.util.FileSystemUtils;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.contentOf;
@ -195,6 +197,9 @@ class MavenBuild { @@ -195,6 +197,9 @@ class MavenBuild {
catch (Exception ex) {
throw new RuntimeException(ex);
}
finally {
FileSystemUtils.deleteRecursively(this.temp);
}
}
/**

Loading…
Cancel
Save