Polish Gradle expression references
Expand all expression `$` references to the full `${...}` form.
This commit is contained in:
@@ -20,7 +20,7 @@ plugins {
|
||||
id 'com.gradle.enterprise' version '3.1.1'
|
||||
}
|
||||
|
||||
apply from: "$rootDir/gradle/build-scan-user-data.gradle"
|
||||
apply from: "${rootDir}/gradle/build-scan-user-data.gradle"
|
||||
gradleEnterprise {
|
||||
buildScan {
|
||||
captureTaskInputFiles = true
|
||||
@@ -33,7 +33,7 @@ gradleEnterprise {
|
||||
}
|
||||
}
|
||||
|
||||
apply from: "$settingsDir/gradle/build-cache-settings.gradle"
|
||||
apply from: "${settingsDir}/gradle/build-cache-settings.gradle"
|
||||
|
||||
rootProject.name='spring-boot-build'
|
||||
|
||||
@@ -64,10 +64,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'
|
||||
|
||||
file("$rootDir/spring-boot-project/spring-boot-starters").eachDirMatch(~/spring-boot-starter.*/) {
|
||||
include "spring-boot-project:spring-boot-starters:$it.name"
|
||||
file("${rootDir}/spring-boot-project/spring-boot-starters").eachDirMatch(~/spring-boot-starter.*/) {
|
||||
include "spring-boot-project:spring-boot-starters:${it.name}"
|
||||
}
|
||||
|
||||
file("$rootDir/spring-boot-tests/spring-boot-smoke-tests").eachDirMatch(~/spring-boot-smoke-test.*/) {
|
||||
include "spring-boot-tests:spring-boot-smoke-tests:$it.name"
|
||||
file("${rootDir}/spring-boot-tests/spring-boot-smoke-tests").eachDirMatch(~/spring-boot-smoke-test.*/) {
|
||||
include "spring-boot-tests:spring-boot-smoke-tests:${it.name}"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user