You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
pluginManagement { |
|
new File(rootDir.parentFile, "gradle.properties").withInputStream { |
|
def properties = new Properties() |
|
properties.load(it) |
|
properties.forEach(settings.ext::set) |
|
gradle.rootProject { |
|
properties.forEach(project.ext::set) |
|
} |
|
} |
|
evaluate(new File("${rootDir}/SpringRepositorySupport.groovy")).apply(this) |
|
repositories { |
|
mavenCentral() |
|
gradlePluginPortal() |
|
} |
|
}
|
|
|