Replace Gradle single quote strings with the double quote form
whenever possible. The change helps to being consistency to the
dependencies section where mostly single quotes were used, but
occasionally double quotes were required due to `${}` references.
15 lines
412 B
Groovy
15 lines
412 B
Groovy
pluginManagement {
|
|
repositories {
|
|
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
|
mavenCentral()
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == "org.springframework.boot") {
|
|
useModule "org.springframework.boot:spring-boot-gradle-plugin:${requested.version}"
|
|
}
|
|
}
|
|
}
|
|
} |