1
0
mirror of synced 2026-05-22 13:23:17 +00:00
Files
spring-security/settings.gradle
T

55 lines
1.4 KiB
Groovy
Raw Normal View History

2020-03-04 11:33:58 -06:00
pluginManagement {
repositories {
gradlePluginPortal()
maven { url 'https://repo.spring.io/plugins-release' }
}
}
plugins {
2022-09-16 16:01:51 +02:00
id "com.gradle.enterprise" version "3.11.1"
2021-01-12 13:42:28 +01:00
id "io.spring.ge.conventions" version "0.0.7"
2020-03-04 11:33:58 -06:00
}
2021-04-04 23:22:06 -05:00
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
2016-04-11 10:47:06 -04:00
rootProject.name = 'spring-security'
2017-03-28 15:45:30 -05:00
FileTree buildFiles = fileTree(rootDir) {
List excludes = gradle.startParameter.projectProperties.get("excludeProjects")?.split(",")
include '**/*.gradle', '**/*.gradle.kts'
2018-05-18 11:27:06 -05:00
exclude 'build', '**/gradle', 'settings.gradle', 'buildSrc', '/build.gradle', '.*', 'out'
2017-03-28 15:45:30 -05:00
exclude '**/grails3'
if(excludes) {
exclude excludes
}
2010-02-08 23:57:04 +00:00
}
2017-03-28 15:45:30 -05:00
String rootDirPath = rootDir.absolutePath + File.separator
buildFiles.each { File buildFile ->
2016-04-11 10:47:06 -04:00
2017-03-28 15:45:30 -05:00
boolean isDefaultName = 'build.gradle'.equals(buildFile.name)
boolean isKotlin = buildFile.name.endsWith(".kts")
2017-03-28 15:45:30 -05:00
if(isDefaultName) {
String buildFilePath = buildFile.parentFile.absolutePath
2018-08-22 10:21:41 -05:00
String projectPath = buildFilePath.replace(rootDirPath, '').replace(File.separator, ':')
2016-04-11 10:47:06 -04:00
include projectPath
2017-03-28 15:45:30 -05:00
} else {
String projectName
if (isKotlin) {
projectName = buildFile.name.replace('.gradle.kts', '')
} else {
projectName = buildFile.name.replace('.gradle', '')
}
2017-03-28 15:45:30 -05:00
String projectPath = ':' + projectName;
include projectPath
def project = findProject("${projectPath}")
project.name = projectName
project.projectDir = buildFile.parentFile
project.buildFileName = buildFile.name
2016-04-11 10:47:06 -04:00
}
}