Commit 77badf77 authored by Andy Wilkinson's avatar Andy Wilkinson

Merge pull request #19619 from vpavic

* gh-19619:
  Simplify Gradle's build settings

Closes gh-19619
parents e8c4a859 57b7dfc7
......@@ -13,4 +13,4 @@ pluginManagement {
}
}
apply from: new File(settingsDir, '../gradle/build-cache-settings.gradle')
apply from: "$settingsDir/../gradle/build-cache-settings.gradle"
......@@ -32,7 +32,7 @@ gradleEnterprise {
}
}
apply from: new File(settingsDir, 'gradle/build-cache-settings.gradle')
apply from: "$settingsDir/gradle/build-cache-settings.gradle"
rootProject.name='spring-boot-build'
......@@ -62,10 +62,10 @@ include 'spring-boot-tests:spring-boot-integration-tests:spring-boot-configurati
include 'spring-boot-tests:spring-boot-integration-tests:spring-boot-launch-script-tests'
include 'spring-boot-tests:spring-boot-integration-tests:spring-boot-server-tests'
new File("$rootDir/spring-boot-project/spring-boot-starters").eachFileMatch(groovy.io.FileType.DIRECTORIES, ~/spring-boot-starter.*/) {
file("$rootDir/spring-boot-project/spring-boot-starters").eachDirMatch(~/spring-boot-starter.*/) {
include "spring-boot-project:spring-boot-starters:$it.name"
}
new File("$rootDir/spring-boot-tests/spring-boot-smoke-tests").eachFileMatch(groovy.io.FileType.DIRECTORIES, ~/spring-boot-smoke-test.*/) {
file("$rootDir/spring-boot-tests/spring-boot-smoke-tests").eachDirMatch(~/spring-boot-smoke-test.*/) {
include "spring-boot-tests:spring-boot-smoke-tests:$it.name"
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment