Files
spring-graphql/settings.gradle
2021-01-03 21:37:43 +00:00

19 lines
535 B
Groovy

pluginManagement {
repositories {
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == 'org.springframework.boot') {
useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
}
}
}
}
rootProject.name = 'spring-graphql'
include 'spring-graphql-web'
include 'samples:webmvc-http-endpoint'