configureBootBuildImageTask() — spring-boot Function Reference
Architecture documentation for the configureBootBuildImageTask() function in JavaPluginAction.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 4e83cb39_9767_db21_186c_8391527f3c9b["configureBootBuildImageTask()"] 74d8bc31_4ba2_e112_795c_80c2cc344e68["execute()"] 74d8bc31_4ba2_e112_795c_80c2cc344e68 -->|calls| 4e83cb39_9767_db21_186c_8391527f3c9b b39b7d94_d333_4ced_2158_4ff710b5ae76["getArchiveFile()"] 4e83cb39_9767_db21_186c_8391527f3c9b -->|calls| b39b7d94_d333_4ced_2158_4ff710b5ae76 style 4e83cb39_9767_db21_186c_8391527f3c9b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin/JavaPluginAction.java lines 193–199
private void configureBootBuildImageTask(Project project, TaskProvider<BootJar> bootJar) {
project.getTasks().register(SpringBootPlugin.BOOT_BUILD_IMAGE_TASK_NAME, BootBuildImage.class, (buildImage) -> {
buildImage.setDescription("Builds an OCI image of the application using the output of the bootJar task");
buildImage.setGroup(BasePlugin.BUILD_GROUP);
buildImage.getArchiveFile().set(bootJar.get().getArchiveFile());
});
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does configureBootBuildImageTask() do?
configureBootBuildImageTask() is a function in the spring-boot codebase.
What does configureBootBuildImageTask() call?
configureBootBuildImageTask() calls 1 function(s): getArchiveFile.
What calls configureBootBuildImageTask()?
configureBootBuildImageTask() is called by 1 function(s): execute.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free