customizeTags() — spring-boot Function Reference
Architecture documentation for the customizeTags() function in BootBuildImage.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 28d2cb66_609c_36e7_b47e_aebb1020f1be["customizeTags()"] 44bdad37_cd41_021a_4a76_b2999cac6a5a["customize()"] 44bdad37_cd41_021a_4a76_b2999cac6a5a -->|calls| 28d2cb66_609c_36e7_b47e_aebb1020f1be 058469ca_a79d_27ad_3bbb_f2aaee82b280["getTags()"] 28d2cb66_609c_36e7_b47e_aebb1020f1be -->|calls| 058469ca_a79d_27ad_3bbb_f2aaee82b280 style 28d2cb66_609c_36e7_b47e_aebb1020f1be fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling/BootBuildImage.java lines 489–495
private BuildRequest customizeTags(BuildRequest request) {
List<String> tags = getTags().getOrNull();
if (!CollectionUtils.isEmpty(tags)) {
return request.withTags(tags.stream().map(ImageReference::of).toList());
}
return request;
}
Domain
Subdomains
Calls
- getTags()
Called By
Source
Frequently Asked Questions
What does customizeTags() do?
customizeTags() is a function in the spring-boot codebase.
What does customizeTags() call?
customizeTags() calls 1 function(s): getTags.
What calls customizeTags()?
customizeTags() is called by 1 function(s): customize.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free