16 lines
439 B
Groovy
16 lines
439 B
Groovy
pluginManagement {
|
|
repositories {
|
|
maven { url '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 = 'cqrs-eventsourcing-user-management-example'
|