Files
spring-graphql/settings.gradle
Brian Clozel 34355051b5 Rename docs module
This commit renames the docs module to "spring-graphql-docs" to better
align with other Spring projects and their published docs artifact.
2021-06-30 18:16:27 +02:00

26 lines
743 B
Groovy

pluginManagement {
repositories {
maven { url 'https://repo.spring.io/release' }
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',
'spring-graphql-test',
'graphql-spring-boot-starter',
'samples:webmvc-http',
'samples:webmvc-http-security',
'samples:webflux-security',
'samples:webflux-websocket',
'spring-graphql-docs'