Files
spring-boot/gradle/plugins/settings.gradle
2025-06-13 20:06:23 -07:00

13 lines
303 B
Groovy

pluginManagement {
new File(rootDir.parentFile.parentFile, "gradle.properties").withInputStream {
def properties = new Properties()
properties.load(it)
properties.forEach(settings.ext::set)
gradle.rootProject {
properties.forEach(project.ext::set)
}
}
}
include 'cycle-detection-plugin'