Merge branch '3.0.x' into 3.1.x

Closes gh-37547
This commit is contained in:
Andy Wilkinson 2023-09-22 16:30:19 +01:00
commit 8080bb9cfb

View File

@ -96,6 +96,11 @@ public abstract class AbstractAotMojo extends AbstractDependencyFilterMojo {
@Parameter(property = "spring-boot.aot.compilerArguments")
private String compilerArguments;
/**
* Return Maven execution session.
* @return session
* @since 3.0.10
*/
protected final MavenSession getSession() {
return this.session;
}