- This is important for running a project from an isolated directory - It also helps the IDE to correctly download sources when debugging a project
9 lines
211 B
Groovy
9 lines
211 B
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url 'https://repo.spring.io/milestone' }
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
}
|
|
}
|