13 lines
303 B
Groovy
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'
|