configureKotlinVersionProperty() — spring-boot Function Reference
Architecture documentation for the configureKotlinVersionProperty() function in KotlinPluginAction.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD d3e7a594_60b1_b5e5_b1b4_c0beed202db6["configureKotlinVersionProperty()"] ca4cd396_f4b1_db15_511e_77455884d345["execute()"] ca4cd396_f4b1_db15_511e_77455884d345 -->|calls| d3e7a594_60b1_b5e5_b1b4_c0beed202db6 d6b03c75_6d34_3a1f_9f71_ae90fd853cb3["getKotlinVersion()"] d3e7a594_60b1_b5e5_b1b4_c0beed202db6 -->|calls| d6b03c75_6d34_3a1f_9f71_ae90fd853cb3 style d3e7a594_60b1_b5e5_b1b4_c0beed202db6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin/KotlinPluginAction.java lines 42–48
private void configureKotlinVersionProperty(Project project) {
ExtraPropertiesExtension extraProperties = project.getExtensions().getExtraProperties();
if (!extraProperties.has("kotlin.version")) {
String kotlinVersion = getKotlinVersion(project);
extraProperties.set("kotlin.version", kotlinVersion);
}
}
Domain
Subdomains
Calls
- getKotlinVersion()
Called By
Source
Frequently Asked Questions
What does configureKotlinVersionProperty() do?
configureKotlinVersionProperty() is a function in the spring-boot codebase.
What does configureKotlinVersionProperty() call?
configureKotlinVersionProperty() calls 1 function(s): getKotlinVersion.
What calls configureKotlinVersionProperty()?
configureKotlinVersionProperty() 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