2019-10-11 14:17:51 -04:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
maven { url 'https://maven.ossez.com/repository/internal' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buildCache {
|
|
|
|
local {
|
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
remote(HttpBuildCache) {
|
|
|
|
enabled = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
include "spring-batch"
|
|
|
|
|
|
|
|
rootProject.name = "cwiki-us-demo-tutorials"
|
|
|
|
|
|
|
|
rootProject.children.each { project ->
|
|
|
|
project.buildFileName = "${project.name}.gradle"
|
|
|
|
assert project.projectDir.isDirectory()
|
2021-04-15 11:05:54 -04:00
|
|
|
// assert project.buildFile.exists()
|
|
|
|
// assert project.buildFile.isFile()
|
2019-10-11 14:17:51 -04:00
|
|
|
}
|