mirror of https://github.com/usbharu/Hideout.git
16 lines
384 B
Plaintext
16 lines
384 B
Plaintext
|
pluginManagement {
|
||
|
repositories {
|
||
|
maven { url = uri("https://repo.spring.io/snapshot") }
|
||
|
maven { url = uri("https://repo.spring.io/milestone") }
|
||
|
gradlePluginPortal()
|
||
|
}
|
||
|
resolutionStrategy {
|
||
|
eachPlugin {
|
||
|
if (requested.id.id == "org.springframework.boot") {
|
||
|
useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
rootProject.name = "{{artifactId}}"
|