getSourceMajorVersion() — spring-boot Function Reference
Architecture documentation for the getSourceMajorVersion() function in JavaCompilerPluginConfiguration.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 57740982_7f99_bb05_75e1_cfffc9418f9f["getSourceMajorVersion()"] 1523465b_5f0f_4665_4355_b8bef4c9e688["getConfigurationValue()"] 57740982_7f99_bb05_75e1_cfffc9418f9f -->|calls| 1523465b_5f0f_4665_4355_b8bef4c9e688 cd5f418b_c259_4904_49e5_1919016a3be0["getPropertyValue()"] 57740982_7f99_bb05_75e1_cfffc9418f9f -->|calls| cd5f418b_c259_4904_49e5_1919016a3be0 b4994b0f_d1bf_57dd_8d2f_b6ea99d18458["majorVersionFor()"] 57740982_7f99_bb05_75e1_cfffc9418f9f -->|calls| b4994b0f_d1bf_57dd_8d2f_b6ea99d18458 style 57740982_7f99_bb05_75e1_cfffc9418f9f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/JavaCompilerPluginConfiguration.java lines 41–49
@Nullable String getSourceMajorVersion() {
String version = getConfigurationValue("source");
if (version == null) {
version = getPropertyValue("maven.compiler.source");
}
return majorVersionFor(version);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does getSourceMajorVersion() do?
getSourceMajorVersion() is a function in the spring-boot codebase.
What does getSourceMajorVersion() call?
getSourceMajorVersion() calls 3 function(s): getConfigurationValue, getPropertyValue, majorVersionFor.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free