123456789101112131415161718192021222324252627282930 |
- rootProject.name = 'spring-security'
- FileTree buildFiles = fileTree(rootDir) {
- List excludes = gradle.startParameter.projectProperties.get("excludeProjects")?.split(",")
- include '**/*.gradle'
- exclude 'build', '**/gradle', 'settings.gradle', 'buildSrc', '/build.gradle', '.*', 'out'
- exclude '**/grails3'
- if(excludes) {
- exclude excludes
- }
- }
- String rootDirPath = rootDir.absolutePath + File.separator
- buildFiles.each { File buildFile ->
- boolean isDefaultName = 'build.gradle'.equals(buildFile.name)
- if(isDefaultName) {
- String buildFilePath = buildFile.parentFile.absolutePath
- String projectPath = buildFilePath.replace(rootDirPath, '').replaceAll(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
- }
- }
|