Files
cqrs-eventsourcing-user-man…/settings.gradle
Maksim Kostromin 5468280674 Initial commit
2019-07-31 04:30:30 +03:00

15 lines
372 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'