mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Deprecate the `useTestClasspath` flag in favor of a `testClasspath` parameter on the `run` and `start` goals. It accepts `off`, `dependencies`, or `all`, with `all` also adding the project's test classes directory to the classpath so that a main class located in `src/test/java` can be found and run, matching the `test-run` goal's existing behaviour. Closes gh-36115