mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
019785a72e
This commit introduces TestAotProcessor which replaces ProcessTestsAheadOfTimeCommand, removes the dependency on picocli, and aligns with the implementation of the AotProcessor in Spring Boot. TestAotProcessor is a command-line application (CLI) that scans the provided classpath roots for Spring integration test classes and then generates AOT artifacts for those test classes in the provided output directories. This CLI is only intended to be used by build tools. Closes gh-28825