You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
397 B
Groovy
17 lines
397 B
Groovy
5 years ago
|
pluginManagement {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
gradlePluginPortal()
|
||
|
maven { url 'https://repo.spring.io/snapshot' }
|
||
|
}
|
||
|
resolutionStrategy {
|
||
|
eachPlugin {
|
||
|
if (requested.id.id == 'io.spring.javaformat') {
|
||
|
useModule "io.spring.javaformat:spring-javaformat-gradle-plugin:${requested.version}"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply from: new File(settingsDir, '../gradle/build-cache-settings.gradle')
|