Running ./gradlew clean in spring-boot-project/spring-boot-tools/spring-boot-maven-plugin does not seem to clear prepared Maven binaries for integration tests.
As a result, when older versions are made out of scope, local tests still run against them as build/maven-binaries is not cleaned.
Comment From: wilkinsona
There are a couple of things:
cleanneeds to wipe out themaven-binariesdirectorycleanshould not be necessary as the contents of themaven-binariesdirectory should be kept in sync with the configured binaries that we're testing against.
Comment From: wilkinsona
clean needs to wipe out the maven-binaries directory
As far as I can tell, this already happens. We need to address 2 though.