2023-10-06 12:35:13 +08:00
|
|
|
pluginManagement {
|
2024-09-27 10:33:34 +08:00
|
|
|
evaluate(new File("${gradle.parent.rootProject.rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
|
2023-10-06 12:35:13 +08:00
|
|
|
repositories {
|
2024-06-25 19:04:40 +08:00
|
|
|
maven { url "file:${rootDir}/../docker-test-maven-repository"}
|
2023-10-06 12:35:13 +08:00
|
|
|
mavenCentral()
|
2024-09-27 10:33:34 +08:00
|
|
|
spring.mavenRepositories()
|
2023-10-06 12:35:13 +08:00
|
|
|
}
|
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
|
|
|
if (requested.id.id == "org.springframework.boot") {
|
|
|
|
useModule "org.springframework.boot:spring-boot-gradle-plugin:${requested.version}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|