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.
15 lines
412 B
Groovy
15 lines
412 B
Groovy
5 years ago
|
pluginManagement {
|
||
|
repositories {
|
||
5 years ago
|
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
||
5 years ago
|
mavenCentral()
|
||
5 years ago
|
maven { url "https://repo.spring.io/snapshot" }
|
||
|
maven { url "https://repo.spring.io/milestone" }
|
||
5 years ago
|
}
|
||
|
resolutionStrategy {
|
||
|
eachPlugin {
|
||
5 years ago
|
if (requested.id.id == "org.springframework.boot") {
|
||
5 years ago
|
useModule "org.springframework.boot:spring-boot-gradle-plugin:${requested.version}"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|