mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Previously, CommandLineInvoker would use the first -bin.zip file found in build/distributions. If this directory contained multiple zips from building different versions of Spring Boot, this could result in the tests being run against the wrong version of the CLI. This commit updates CommandLineInvoker look for a specific zip in build/distributions, using the version from gradle.properties to identify it. Closes gh-25179