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.
28 lines
751 B
28 lines
751 B
pluginManagement { |
|
repositories { |
|
gradlePluginPortal() |
|
maven { url 'https://repo.spring.io/plugins-release' } |
|
} |
|
} |
|
|
|
plugins { |
|
id "com.gradle.enterprise" version "3.5.1" |
|
id "io.spring.ge.conventions" version "0.0.7" |
|
} |
|
|
|
rootProject.name = 'spring-authorization-server' |
|
|
|
FileTree buildFiles = fileTree(rootDir) { |
|
include '**/*.gradle' |
|
exclude 'build', '**/gradle', 'settings.gradle', 'buildSrc', '/build.gradle', '.*', 'out' |
|
} |
|
|
|
buildFiles.each { File buildFile -> |
|
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 |
|
}
|
|
|