Class AbstractAotProcessor.Settings.Builder
java.lang.Object
org.springframework.context.aot.AbstractAotProcessor.Settings.Builder
- Enclosing class:
- AbstractAotProcessor.Settings
Fluent builder API for 
AbstractAotProcessor.Settings.- Since:
- 6.0
- Author:
- Stephane Nicoll, Andy Wilkinson, Phillip Webb, Sam Brannen
- 
Method SummaryModifier and TypeMethodDescriptionartifactId(String artifactId) Set the artifact ID of the application.build()Build theAbstractAotProcessor.Settingsconfigured in thisBuilder.classOutput(Path classOutput) Set the output directory for generated classes.Set the group ID of the application.resourceOutput(Path resourceOutput) Set the output directory for generated resources.sourceOutput(Path sourceOutput) Set the output directory for generated sources.
- 
Method Details- 
sourceOutputSet the output directory for generated sources.- Parameters:
- sourceOutput- the location of generated sources
- Returns:
- this builder for method chaining
 
- 
resourceOutputSet the output directory for generated resources.- Parameters:
- resourceOutput- the location of generated resources
- Returns:
- this builder for method chaining
 
- 
classOutputSet the output directory for generated classes.- Parameters:
- classOutput- the location of generated classes
- Returns:
- this builder for method chaining
 
- 
groupIdSet the group ID of the application.- Parameters:
- groupId- the group ID of the application, used to locate- native-image.properties
- Returns:
- this builder for method chaining
 
- 
artifactIdSet the artifact ID of the application.- Parameters:
- artifactId- the artifact ID of the application, used to locate- native-image.properties
- Returns:
- this builder for method chaining
 
- 
buildBuild theAbstractAotProcessor.Settingsconfigured in thisBuilder.
 
-