29 lines
957 B
Groovy
29 lines
957 B
Groovy
rootProject.name = 'spring-session-build'
|
|
|
|
FileTree buildFiles = fileTree(rootDir) {
|
|
include '**/*.gradle'
|
|
exclude 'build', '**/gradle', 'settings.gradle', 'buildSrc', '/build.gradle', '.*', 'out'
|
|
exclude '**/grails3'
|
|
gradle.startParameter.projectProperties.get('excludeProjects')?.split(',')?.each { excludeProject ->
|
|
exclude excludeProject
|
|
}
|
|
}
|
|
|
|
String rootDirPath = rootDir.absolutePath + File.separator
|
|
buildFiles.each { buildFile ->
|
|
if (buildFile.name == 'build.gradle') {
|
|
String buildFilePath = buildFile.parentFile.absolutePath
|
|
String projectPath = buildFilePath.replace(rootDirPath, '').replace(File.separator, ':')
|
|
include projectPath
|
|
}
|
|
else {
|
|
String projectName = buildFile.name.replace('.gradle', '')
|
|
String projectPath = ':' + projectName
|
|
include projectPath
|
|
def project = findProject("${projectPath}")
|
|
project.name = projectName
|
|
project.projectDir = buildFile.parentFile
|
|
project.buildFileName = buildFile.name
|
|
}
|
|
}
|