basicExecution() — spring-boot Function Reference
Architecture documentation for the basicExecution() function in BuildInfoTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 8840a0d8_0828_abf4_d7c6_97a733715515["basicExecution()"] 694f50fc_525a_9c2f_e867_646eb42273d8["buildInfoProperties()"] 8840a0d8_0828_abf4_d7c6_97a733715515 -->|calls| 694f50fc_525a_9c2f_e867_646eb42273d8 747e1eb5_4925_ee40_e737_5f1b54394a57["createTask()"] 8840a0d8_0828_abf4_d7c6_97a733715515 -->|calls| 747e1eb5_4925_ee40_e737_5f1b54394a57 18afdd1f_2fa6_8d2c_b60e_f5726def5d8a["createProject()"] 8840a0d8_0828_abf4_d7c6_97a733715515 -->|calls| 18afdd1f_2fa6_8d2c_b60e_f5726def5d8a style 8840a0d8_0828_abf4_d7c6_97a733715515 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/tasks/buildinfo/BuildInfoTests.java lines 49–57
@Test
void basicExecution() {
Properties properties = buildInfoProperties(createTask(createProject("test")));
assertThat(properties).containsKey("build.time");
assertThat(properties).doesNotContainKey("build.artifact");
assertThat(properties).doesNotContainKey("build.group");
assertThat(properties).containsEntry("build.name", "test");
assertThat(properties).containsEntry("build.version", "unspecified");
}
Domain
Subdomains
Source
Frequently Asked Questions
What does basicExecution() do?
basicExecution() is a function in the spring-boot codebase.
What does basicExecution() call?
basicExecution() calls 3 function(s): buildInfoProperties, createProject, createTask.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free