Browse Source

Add Javadoc since for AbstractAotMojo.getSession()

See gh-37462
pull/38325/head
Johnny Lim 2 years ago committed by Andy Wilkinson
parent
commit
ce813346c9
  1. 5
      spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/AbstractAotMojo.java

5
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/AbstractAotMojo.java

@ -96,6 +96,11 @@ public abstract class AbstractAotMojo extends AbstractDependencyFilterMojo { @@ -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;
}

Loading…
Cancel
Save