Polish Gradle expression references

Expand all expression `$` references to the full `${...}` form.
This commit is contained in:
Phillip Webb
2020-01-21 18:33:33 -08:00
parent 89237634c7
commit bfd2ca7fd9
29 changed files with 60 additions and 60 deletions

View File

@@ -1,6 +1,6 @@
plugins {
id 'java-gradle-plugin'
id 'io.spring.javaformat' version "$javaFormatVersion"
id 'io.spring.javaformat' version "${javaFormatVersion}"
id 'checkstyle'
}
@@ -14,7 +14,7 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:$javaFormatVersion"
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:${javaFormatVersion}"
implementation 'com.fasterxml.jackson.core:jackson-databind:2.10.0'
implementation 'commons-codec:commons-codec:1.13'
implementation 'org.apache.maven:maven-embedder:3.6.2'
@@ -22,7 +22,7 @@ dependencies {
implementation 'org.springframework:spring-core:5.2.2.RELEASE'
implementation 'org.springframework:spring-web:5.2.2.RELEASE'
implementation 'com.google.code.gson:gson:2.8.5'
implementation "io.spring.javaformat:spring-javaformat-gradle-plugin:$javaFormatVersion"
implementation "io.spring.javaformat:spring-javaformat-gradle-plugin:${javaFormatVersion}"
testImplementation 'org.assertj:assertj-core:3.11.1'
testImplementation 'org.apache.logging.log4j:log4j-core:2.12.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'

View File

@@ -12,4 +12,4 @@ pluginManagement {
}
}
apply from: "$settingsDir/../gradle/build-cache-settings.gradle"
apply from: "${settingsDir}/../gradle/build-cache-settings.gradle"